return this.getPropertyValue(nodeKey, propertyName, "");
}
public final String getPropertyValue(final String nodeKey,
final String propertyName, final String defaultValue) {
final ConfigurationProperty prop = this.getProperty(nodeKey,
propertyName);
return null != prop ? prop.getValue() : defaultValue;
}