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

WSDLConfig

public class WSDLConfig 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 SEI from WSDL

Fields Summary
private String
webServiceName
private String
wsdlLocation
private String
packageName
Constructors Summary
public WSDLConfig(String wsName, String wsdl, String pkg)
Constructor takes all required arguments and sets them appropriately

param
wsName Name of the webservice
param
wsdl the WSDL file location
param
pkg the package name where the SEI and its implementations are present

        this.webServiceName = wsName;
        this.wsdlLocation = wsdl;
        this.packageName = pkg;
    
Methods Summary
public java.lang.StringgetPackageName()

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

 return this.webServiceName; 
public java.lang.StringgetWsdlLocation()

 return this.wsdlLocation;