FileDocCategorySizeDatePackage
ConnectorRuntimeDDFile.javaAPI DocGlassfish v2 API3289Fri May 04 22:31:38 BST 2007com.sun.enterprise.deployment.io.runtime

ConnectorRuntimeDDFile

public class ConnectorRuntimeDDFile extends com.sun.enterprise.deployment.io.ConfigurationDeploymentDescriptorFile
This class is responsible for handling the XML configuration information for the SunOne AppServer Web Container
author
Jerome Dochez

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetDeploymentDescriptorPath()

return
the location of the DeploymentDescriptor file for a particular type of J2EE Archive

        return DescriptorConstants.S1AS_RAR_JAR_ENTRY; 
    
public com.sun.enterprise.deployment.node.RootXMLNodegetRootXMLNode(com.sun.enterprise.deployment.Descriptor descriptor)

return
a RootXMLNode responsible for handling the deployment descriptors associated with this J2EE module
param
the descriptor for which we need the node

   
        if (descriptor instanceof ConnectorDescriptor) {
            return new ConnectorNode((ConnectorDescriptor) descriptor);
        }
        return null;