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

liquibase.RuntimeEnvironment Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
package liquibase;

import liquibase.database.Database;

public class RuntimeEnvironment {
    private Database targetDatabase;
    private Contexts contexts;
    private final LabelExpression labels;

    public RuntimeEnvironment(Database targetDatabase, Contexts contexts, LabelExpression labelExpression) {
        this.targetDatabase = targetDatabase;
        this.contexts = contexts;
        this.labels = labelExpression;
    }

    public Database getTargetDatabase() {
        return targetDatabase;
    }

    public Contexts getContexts() {
        return contexts;
    }

    public LabelExpression getLabels() {
        return labels;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy