Class WebServiceEndpointRuntimeNode
- java.lang.Object
-
- com.sun.enterprise.deployment.node.DeploymentDescriptorNode<WebServiceEndpoint>
-
- com.sun.enterprise.deployment.node.runtime.WebServiceEndpointRuntimeNode
-
- All Implemented Interfaces:
XMLNode<WebServiceEndpoint>
public class WebServiceEndpointRuntimeNode extends DeploymentDescriptorNode<WebServiceEndpoint>
This node is responsible for handling runtime info for web service endpoints.- Version:
- Author:
- Kenneth Saks
-
-
Field Summary
-
Fields inherited from class com.sun.enterprise.deployment.node.DeploymentDescriptorNode
abstractDescriptor, handlers, localStrings, parentNode, rootNode, serviceLocator
-
-
Constructor Summary
Constructors Constructor Description WebServiceEndpointRuntimeNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description WebServiceEndpointgetDescriptor()protected 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.voidsetElementValue(XMLElement element, String value)receives notiification of the value for a particular tagNodewriteDescriptor(Node parent, String nodeName, WebServiceEndpoint endpoint)write the descriptor class to a DOM tree and return itvoidwriteWebServiceEndpointInfo(Node parent, EjbDescriptor ejb)writes all the runtime information for web service endpoints for a given ejbvoidwriteWebServiceEndpointInfo(Node parent, WebComponentDescriptor webComp)writes all the runtime information for web service endpoints for a given web component-
Methods inherited from class com.sun.enterprise.deployment.node.DeploymentDescriptorNode
addDescriptor, addNamespaceDeclaration, addNodeDescriptor, addPrefixMapping, appendChild, appendQNameChild, appendTextChild, appendTextChild, composeQNameValue, createDescriptor, endElement, forceAppendTextChild, getHandlerFor, getLocalPartFromQName, getOwnerDocument, getParentNode, getPrefixFromQName, getRootNode, getXMLPath, getXMLRootTag, handlesElement, postParsing, registerElementHandler, registerElementHandler, resolvePrefix, setAttribute, setAttributeNS, setAttributeValue, setDescriptorInfo, setParentNode, setXMLRootTag, startElement, writeDescriptor, writeDescriptors, writeEjbReferenceDescriptors, writeEntityManagerFactoryReferenceDescriptors, writeEntityManagerReferenceDescriptors, writeEnvEntryDescriptors, writeJNDIEnvironmentRefs, writeLifeCycleCallbackDescriptors, writeLocalizedDescriptions, writeMessageDestinationRefDescriptors, writeResourceDescriptors, writeResourceEnvRefDescriptors, writeResourceRefDescriptors, writeServiceReferenceDescriptors, writeSimpleTextDescriptor, writeSubDescriptors
-
-
-
-
Method Detail
-
getDescriptor
public WebServiceEndpoint getDescriptor()
- Specified by:
getDescriptorin interfaceXMLNode<WebServiceEndpoint>- Overrides:
getDescriptorin classDeploymentDescriptorNode<WebServiceEndpoint>- Returns:
- the descriptor instance to associate with this XMLNode
-
getDispatchTable
protected Map 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:
getDispatchTablein classDeploymentDescriptorNode<WebServiceEndpoint>- Returns:
- the map with the element name as a key, the setter method as a value
-
setElementValue
public void setElementValue(XMLElement element, String value)
receives notiification of the value for a particular tag- Specified by:
setElementValuein interfaceXMLNode<WebServiceEndpoint>- Overrides:
setElementValuein classDeploymentDescriptorNode<WebServiceEndpoint>- Parameters:
element- the xml elementvalue- it's associated value
-
writeDescriptor
public Node writeDescriptor(Node parent, String nodeName, WebServiceEndpoint endpoint)
write the descriptor class to a DOM tree and return it- Overrides:
writeDescriptorin classDeploymentDescriptorNode<WebServiceEndpoint>- Parameters:
parent- node for the DOM treenode- name for the descriptorthe- descriptor to write- Returns:
- the DOM tree top node
-
writeWebServiceEndpointInfo
public void writeWebServiceEndpointInfo(Node parent, EjbDescriptor ejb)
writes all the runtime information for web service endpoints for a given ejb- Parameters:
parent- node to add the runtime xml infothe- ejb endpoint
-
writeWebServiceEndpointInfo
public void writeWebServiceEndpointInfo(Node parent, WebComponentDescriptor webComp)
writes all the runtime information for web service endpoints for a given web component- Parameters:
parent- node to add the runtime xml infothe- web component
-
-