liquibase.dbdoc.AuthorWriter 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.dbdoc;
import liquibase.change.Change;
import liquibase.database.Database;
import java.io.File;
import java.io.IOException;
import java.io.Writer;
import java.util.List;
public class AuthorWriter extends HTMLWriter {
public AuthorWriter(File rootOutputDir, Database database) {
super(new File(rootOutputDir, "authors"), database);
}
@Override
protected String createTitle(Object object) {
return "Changes created by author "+object.toString();
}
@Override
protected void writeCustomHTML(Writer fileWriter, Object object, List changes, Database database) throws IOException {
}
}