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

org.technologybrewery.fermenter.mda.metamodel.element.ConfigurationItem Maven / Gradle / Ivy

The newest version!
package org.technologybrewery.fermenter.mda.metamodel.element;

/**
 * Defines the contract for a configuration item.
 */
public interface ConfigurationItem extends Validatable {

    /**
     * Returns the configuration key.
     * 
     * @return configuration key
     */
    String getKey();

    /**
     * Returns the configuration value.
     * 
     * @return configuration value
     */
    String getValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy