ActivationConfigNodepublic class ActivationConfigNode extends com.sun.enterprise.deployment.node.DeploymentDescriptorNode This class is responsible for hanlding the activation config elements. |
Fields Summary |
---|
private com.sun.enterprise.deployment.ActivationConfigDescriptor | descriptor | private String | propertyName |
Constructors Summary |
---|
public ActivationConfigNode()
super();
registerElementHandler(new XMLElement(EjbTagNames.ACTIVATION_CONFIG),
ActivationConfigNode.class,
"setActivationConfigDescriptor");
|
Methods Summary |
---|
public java.lang.Object | getDescriptor()
if (descriptor == null) {
descriptor = (ActivationConfigDescriptor) super.getDescriptor();
}
return descriptor;
| public void | setElementValue(com.sun.enterprise.deployment.node.XMLElement element, java.lang.String value)receives notiification of the value for a particular tag
if (EjbTagNames.ACTIVATION_CONFIG_PROPERTY_NAME.equals
(element.getQName())) {
propertyName = value;
} else if(EjbTagNames.ACTIVATION_CONFIG_PROPERTY_VALUE.equals
(element.getQName())) {
EnvironmentProperty prop =
new EnvironmentProperty(propertyName, value, "");
descriptor.getActivationConfig().add(prop);
propertyName = null;
}
| public org.w3c.dom.Node | writeDescriptor(org.w3c.dom.Node parent, java.lang.String nodeName, com.sun.enterprise.deployment.ActivationConfigDescriptor descriptor)write the descriptor class to a DOM tree and return it
Node activationConfigNode = null;
Set activationConfig = descriptor.getActivationConfig();
// ActionConfig must have at least one ActionConfigProperty
// and ActionConfigProperty must have a pair of name/value
// so filter out the entries with blank name or value
Set activationConfig2 = new HashSet();
for(Iterator iter = activationConfig.iterator(); iter.hasNext();) {
EnvironmentProperty next = (EnvironmentProperty) iter.next();
if ( ! next.getName().trim().equals("") &&
! next.getValue().trim().equals("")) {
activationConfig2.add(next);
}
}
if( activationConfig2.size() > 0 ) {
activationConfigNode =
appendChild(parent, nodeName);
writeLocalizedDescriptions(activationConfigNode, descriptor);
for(Iterator iter = activationConfig2.iterator(); iter.hasNext();) {
Node activationConfigPropertyNode =
appendChild(activationConfigNode,
EjbTagNames.ACTIVATION_CONFIG_PROPERTY);
EnvironmentProperty next = (EnvironmentProperty) iter.next();
appendTextChild(activationConfigPropertyNode,
EjbTagNames.ACTIVATION_CONFIG_PROPERTY_NAME,
(String) next.getName());
appendTextChild(activationConfigPropertyNode,
EjbTagNames.ACTIVATION_CONFIG_PROPERTY_VALUE,
(String) next.getValue());
}
}
return activationConfigNode;
|
|