FileDocCategorySizeDatePackage
SEIConfig.javaAPI DocGlassfish v2 API3467Fri May 04 22:32:00 BST 2007com.sun.enterprise.deployment.util.webservice

SEIConfig

public class SEIConfig extends Object
This class is used by the deployment tool to set the required information for jaxrpc-config.xml that is passed as an argument to the wscompile tool. This class is to be used when the developer is using the deploytool to generate WSDL given an SEI

Fields Summary
private String
webServiceName
private String
nameSpace
private String
packageName
private String
interfaceName
private String
servantName
Constructors Summary
public SEIConfig(String svcName, String space, String pkg, String svcIntf, String svcImpl)
Constructor takes all required arguments and sets them appropriately

param
svcName Name of the webservice
param
space namespace to be used for the webservice
param
pkg the package name where the SEI and its implementations are present
param
svcIntf the name of the SEI
param
svcImpl the name of SEI implementation

        this.webServiceName = svcName;
        this.nameSpace = space;
        this.packageName = pkg;
        this.interfaceName = svcIntf;
        this.servantName = svcImpl;
    
Methods Summary
public java.lang.StringgetInterface()

 return this.interfaceName; 
public java.lang.StringgetNameSpace()

 return this.nameSpace; 
public java.lang.StringgetPackageName()

 return this.packageName; 
public java.lang.StringgetServant()

 return this.servantName; 
public java.lang.StringgetWebServiceName()

 return this.webServiceName;