liquibase.serializer.ChangeLogSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.serializer;
import liquibase.changelog.ChangeLogChild;
import liquibase.changelog.ChangeSet;
import liquibase.servicelocator.PrioritizedService;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;
public interface ChangeLogSerializer extends LiquibaseSerializer, PrioritizedService {
void write(List children, OutputStream out) throws IOException;
void append(ChangeSet changeSet, File changeLogFile) throws IOException;
}