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

liquibase.integration.IntegrationDetails Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy