Interface RootXMLNode<T>
-
- All Superinterfaces:
XMLNode<T>
- All Known Implementing Classes:
AbstractBundleNode,AppClientNode,AppClientRuntimeNode,ApplicationNode,ApplicationRuntimeNode,ConnectorNode,ConnectorNode,EjbBundleNode,EjbBundleRuntimeNode,GFAppClientRuntimeNode,GFApplicationRuntimeNode,GFEjbBundleRuntimeNode,GFWebBundleRuntimeNode,JaxrpcMappingDescriptorNode,PayaraWebBundleRuntimeNode,PermissionsNode,PersistenceNode,RuntimeBundleNode,WebBundleNode,WebBundleRuntimeNode,WebCommonNode,WebFragmentNode,WeblogicApplicationNode,WebServicesDescriptorNode,WLWebServicesDescriptorNode
public interface RootXMLNode<T> extends XMLNode<T>
This interface defines all the protocol associated with a root node of an XML file.- Version:
- Author:
- Jerome Dochez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDocType()StringgetSpecVersion()StringgetSystemID()List<String>getSystemIDs()voidsetDocType(String docType)set the DOCTYPE as read in the input XML File-
Methods inherited from interface com.sun.enterprise.deployment.node.XMLNode
addDescriptor, addPrefixMapping, endElement, getDescriptor, getHandlerFor, getParentNode, getRootNode, getXMLPath, handlesElement, resolvePrefix, setElementValue, startElement, writeDescriptor
-
-
-
-
Method Detail
-
getDocType
String getDocType()
- Returns:
- the DOCTYPE that should be written to the XML file
-
setDocType
void setDocType(String docType)
set the DOCTYPE as read in the input XML File- Parameters:
docType- doctype for the xml
-
getSystemID
String getSystemID()
- Returns:
- the SystemID of the XML file
-
getSpecVersion
String getSpecVersion()
- Returns:
- the default spec version level this node complies to
-
-