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

org.yamcs.sle.udpslebridge.Util Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.yamcs.sle.udpslebridge;

import java.util.Properties;

public class Util {
    public static String getProperty(Properties props, String key) {
        if(!props.containsKey(key)) {
            throw new ConfigurationException("Cannot find property '"+key+"'");
        }
        return props.getProperty(key);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy