All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.serializer.ChangeLogSerializer Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy