liquibase.integration.IntegrationDetails 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.integration;
import java.util.HashMap;
import java.util.Map;
/**
* Stores information about the integration running Liquibase.
*
* NOTE: This class is under development and will likely change over time.
*/
public class IntegrationDetails {
private String name;
private Map parameters = new HashMap<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Map getParameters() {
return parameters;
}
public void setParameters(Map parameters) {
this.parameters = parameters;
}
public void setParameter(String key, String value) {
this.parameters.put(key, value);
}
}