* @param property to be obtained
* @param props Properties object source
* @return
*/
private String getProperty(String property, Properties props){
StringSerial value = new StringSerial();
try {
value = (StringSerial) props.getParam(property);
} catch (InvalidPropertyException e) {
// TODO Log this
}
return value.getValue();
}