FileDocCategorySizeDatePackage
MessageDestinationRuntimeNode.javaAPI DocGlassfish v2 API5540Mon Jul 16 18:17:28 BST 2007com.sun.enterprise.deployment.node.runtime

MessageDestinationRuntimeNode

public class MessageDestinationRuntimeNode extends com.sun.enterprise.deployment.node.DeploymentDescriptorNode
This node is responsible for handling runtime descriptor message-destination tag.
author
Kenneth Saks
version

Fields Summary
private com.sun.enterprise.deployment.MessageDestinationDescriptor
descriptor
Constructors Summary
Methods Summary
public java.lang.ObjectgetDescriptor()

return
the descriptor instance to associate with this XMLNode

        return descriptor;
    
protected java.util.MapgetDispatchTable()
all sub-implementation of this class can use a dispatch table to map xml element to method name on the descriptor class for setting the element value.

return
the map with the element name as a key, the setter method as a value

    
        Map table = super.getDispatchTable();
        table.put(RuntimeTagNames.JNDI_NAME, "setJndiName");
        return table;
    
public voidsetElementValue(com.sun.enterprise.deployment.node.XMLElement element, java.lang.String value)
receives notiification of the value for a particular tag

param
element the xml element
param
value it's associated value

        if (RuntimeTagNames.MESSAGE_DESTINATION_NAME.equals(element.getQName())) {
            // this is a hack but not much choice
            Object parentNode = getParentNode();
            Object parentDesc = null;
            if (parentNode instanceof WebBundleRuntimeNode) {
                parentDesc = ((WebBundleRuntimeNode) parentNode).getWebBundleDescriptor();
            } else {
                parentDesc = getParentNode().getDescriptor();
            }
            
            if (parentDesc instanceof BundleDescriptor) {
                try {
                    descriptor = ((BundleDescriptor) parentDesc).
                        getMessageDestinationByName(value);
                } catch (IllegalArgumentException iae) {
                    DOLUtils.getDefaultLogger().warning(iae.getMessage());
                }
            } 
        } else super.setElementValue(element, value);
    
public org.w3c.dom.NodewriteDescriptor(org.w3c.dom.Node parent, java.lang.String nodeName, com.sun.enterprise.deployment.MessageDestinationDescriptor msgDest)
write the descriptor class to a DOM tree and return it

param
parent node for the DOM tree
param
node name for the descriptor
param
the descriptor to write
return
the DOM tree top node

          
        String jndiName  = msgDest.getJndiName();
        Node msgDestNode = null;
        if( (jndiName != null) && (jndiName.length() > 0) ) {
            msgDestNode = super.writeDescriptor(parent, nodeName, msgDest);
            appendTextChild(msgDestNode, 
                            RuntimeTagNames.MESSAGE_DESTINATION_NAME, 
                            msgDest.getName());
            appendTextChild(msgDestNode, RuntimeTagNames.JNDI_NAME, 
                            msgDest.getJndiName());
        }
        return msgDestNode;