kr.pe.kwonnam.hibernate4memcached.util.OverridableReadOnlyProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate4-memcached-core Show documentation
Show all versions of hibernate4-memcached-core Show documentation
hibernate4 memcached L2 cache implementation.
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);
}