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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy