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

liquibase.dbdoc.AuthorWriter Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.dbdoc;

import liquibase.change.Change;
import liquibase.database.Database;
import liquibase.resource.Resource;

import java.io.IOException;
import java.io.Writer;
import java.util.List;

public class AuthorWriter extends HTMLWriter {

    public AuthorWriter(Resource rootOutputDir, Database database) {
        super(rootOutputDir.resolve("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 {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy