Class ApplicationParamNode

  • All Implemented Interfaces:
    XMLNode

    public class ApplicationParamNode
    extends DeploymentDescriptorNode
    This node is responsible for handling application-param.
    • Constructor Detail

      • ApplicationParamNode

        public ApplicationParamNode()
    • Method Detail

      • getDispatchTable

        protected Map<String,​String> getDispatchTable()
        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.
        Overrides:
        getDispatchTable in class DeploymentDescriptorNode
        Returns:
        the map with the element name as a key, the setter method as a value
      • writeDescriptor

        public Node writeDescriptor​(Node parent,
                                    String nodeName,
                                    EnvironmentProperty descriptor)
        write the descriptor class to a DOM tree and return it
        Parameters:
        parent - node in the DOM tree
        node - name for the root element of this xml fragment
        the - descriptor to write
        Returns:
        the DOM tree top node
      • writeDescriptors

        public Node writeDescriptors​(Node parent,
                                     String nodeName,
                                     Descriptor parentDesc)
        write all occurrences of the descriptor corresponding to the current node from the parent descriptor to an JAXP DOM node and return it This API will be invoked by the parent node when the parent node writes out a mix of statically and dynamically registered sub nodes. This method should be overriden by the sub classes if it needs to be called by the parent node.
        Overrides:
        writeDescriptors in class DeploymentDescriptorNode
        Parameters:
        parent - node in the DOM tree
        nodeName - the name of the node
        parentDesc - parent descriptor of the descriptor to be written
        Returns:
        the JAXP DOM node