*/
public PropLong getEnv(String key, long defaultValue) {
String defaultStr = this.pluginInfoParameters.getProperty(key,""+defaultValue);
defaultValue = Long.valueOf(defaultStr).longValue();
PropLong tmp = new PropLong(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;
}