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

kr.pe.kwonnam.hibernate4memcached.util.OverridableReadOnlyProperties Maven / Gradle / Ivy

There is a newer version: 0.7
Show newest version
package kr.pe.kwonnam.hibernate4memcached.util;

/**
 * This property can contain many properties object.
 * When getProperty is called, it calls from the first properties object to the last properties object.
 * When it finds the key which requested, it returns the value immediately.
 *
 * @author KwonNam Son ([email protected])
 */
public interface OverridableReadOnlyProperties {
    String getProperty(String key);

    String getProperty(String key, String defaultValue);

    String getRequiredProperty(String key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy