Methods Summary |
---|
public void | addConfigProperty(com.sun.enterprise.deployment.EnvironmentProperty configProperty)add a configProperty to the set
this.configProperties.add(configProperty);
this.setDirty();
this.changed();
|
public void | changed()
super.changed();
|
void | doneOpening()
this.isDirty = false;
this.changed();
|
void | doneSaving()
this.isDirty = false;
this.changed();
|
public java.lang.String | getActivationSpecClass()
return activationSpecClass;
|
public java.util.Set | getConfigProperties()Set of EnvironmentProperty
return configProperties;
|
public java.lang.String | getMessageListenerName()
throw new UnsupportedOperationException();
|
public java.lang.String | getMessageListenerType()
return msgListenerType;
|
public boolean | isDirty()A flag to indicate that my data has changed since the last save.
return this.isDirty;
|
public void | removeConfigProperty(com.sun.enterprise.deployment.EnvironmentProperty configProperty)remove a configProperty from the set
this.configProperties.remove(configProperty);
this.setDirty();
this.changed();
|
public void | setActivationSpecClass(java.lang.String activationSpecClass)
this.activationSpecClass = activationSpecClass;
|
private void | setDirty()
this.isDirty = true;
|
public void | setMessageListenerName(java.lang.String msgListenerName)
throw new UnsupportedOperationException();
|
public void | setMessageListenerType(java.lang.String msgListenerType)
this.msgListenerType = msgListenerType;
|
public void | setName(java.lang.String name)override 'setName' to set 'dirty' flag
if (!this.getName().equals(name)) {
this.setDirty();
super.setName(name);
}
|