FileDocCategorySizeDatePackage
JaxrpcMappingDeploymentDescriptorFile.javaAPI DocGlassfish v2 API3380Fri May 04 22:31:38 BST 2007com.sun.enterprise.deployment.io

JaxrpcMappingDeploymentDescriptorFile

public class JaxrpcMappingDeploymentDescriptorFile extends DeploymentDescriptorFile
This class is responsible for handling the JSR 109 jaxrpc mapping deployment descriptor
author
Kenneth Saks

Fields Summary
String
mappingFilePath
Constructors Summary
public JaxrpcMappingDeploymentDescriptorFile()

    
      
    
Methods Summary
public java.lang.StringgetDeploymentDescriptorPath()

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

        // writing not supported.  always copied from input jar.
        return mappingFilePath;
    
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
descriptor ignored

        return ( descriptor != null ) ? 
            new JaxrpcMappingDescriptorNode() : null;
    
public voidsetDeploymentDescriptorPath(java.lang.String path)
Sets the mapping file location in the source archive

        this.mappingFilePath = path;