1 package com.atlassian.activeobjects.backup;
2
3 import com.atlassian.dbexporter.EntityNameProcessor;
4 import com.atlassian.dbexporter.ForeignKey;
5
6 public interface ForeignKeyCreator {
7 void create(Iterable<ForeignKey> foreignKeys, EntityNameProcessor entityNameProcessor);
8 }