*/
public PropBoolean getEnv(String key, boolean defaultValue) {
String defaultStr = this.pluginInfoParameters.getProperty(key,""+defaultValue);
defaultValue = Boolean.valueOf(defaultStr).booleanValue();
PropBoolean tmp = new PropBoolean(key, defaultValue);
if (this.pluginAttributes != null) {
Object val = this.pluginAttributes.get(key, (String)null);
if (val != null) {
tmp.setValue((String)val, PropEntry.CREATED_BY_SETTER);
return tmp;
}
}
tmp.setFromEnv(this.glob, this.nodeId, context, className, this.instanceName, this.envPrefix+key);
return tmp;
}