kr.pe.kwonnam.hibernate4memcached.util.PropertiesUtils 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;
import java.util.Properties;
/**
* @author KwonNam Son ([email protected])
*/
public class PropertiesUtils {
public static String getRequiredProeprties(Properties properties, String key) {
String value = properties.getProperty(key);
if (value == null) {
throw new IllegalStateException(key + " property is required!");
}
return value;
}
}