@Contract public abstract class WsCompileInvoker extends Object
Modifier and Type | Field and Description |
---|---|
static String |
CLASS_PATH
This specifies the classpath to be used by the wscompile tool - ideally this should at least be set to
directory where the SEI package is present.
|
static String |
MAP_FILE
This specifies the file name to be used by the wscompile tool for creating the 109 mapping file.
|
static String |
TARGET_DIR
This specifies the target directory to be used by the wscompile tool to create the service artifacts - if
this is not specified, then the current directory will be used by the wscompile tool
|
protected HashMap |
wsCompileOptions
This Map holds all the options to be used while invoking the wscompile tool; the options are set by the client
of this interface using the setter methods available in this interface.
|
Constructor and Description |
---|
WsCompileInvoker() |
Modifier and Type | Method and Description |
---|---|
void |
addWsCompileFeature(String feature)
This is used to set a feature to be used while invoking the wscompile tool; for example to use the -f:wsi feature,
the call will be addWsCompileFeature("wsi")
This will prefix -f: to the feature and set it as part of the options Map with operand being null
|
void |
addWsCompileOption(String option,
String operand)
This is used to set an option to be used while invoking the wscompile tool; for example to use the -classpath
option for wscompile, the call will be setWsCompileOption(WsCompileInvoker.CLASS_PATH, "the_path");
For using wscompile options that are not defined in WsCompileInvoker, the 'option' argument of this call will be
the actual argument to be used ; for example, for using the '-s' option of wscompile, the call
to set the option will be setWsCompileOption("-s", "the_path_to_be_used");
For options that dont have an operand, the second argument can be null; for example, to invoke the wscompile tool
with verbose option, the -verbose option will be set with this call setWsCompileOption("-verbose", null);
|
void |
clearWsCompileOptionsAndFeatures()
This is used to clear all options that have been set
|
abstract void |
generateClientStubs(WSDLConfig config)
This is used to generate the non-portable client side artifacts given information on WSDL file location and the
package name; The caller sends the required info on WSDL location, package name etc in WSDLConfig argument and
this method creates the equivalent jaxrpc-config.xml, invokes wscompile with -gen:client option which will
generate all required non-portable client-side artifacts like JAXRPC stubs etc.
|
abstract void |
generateSEI(WSDLConfig config)
This is used to generate SEI and mapping files given information on WSDL file location, require package name.
|
abstract void |
generateWSDL(SEIConfig config)
This is used to generate WSDL and mapping files given information on SEI config; the caller sends in all the
required info in SEIConfig (info like name of webservice, interface name, package name etc) and this method
creates the equivalent jaxrpc-config.xml, invokes wscompile with -define option which will generate the WSDL
and the mapping file.
|
boolean |
removeWsCompileFeature(String feature)
This is used to remove a feature that was set; for example to remove "-f:strict" feature that was set before the
call will be removeWsCompileFeature("strict")
|
boolean |
removeWsCompileOption(String option)
This is used to remove an option that was already set
|
protected HashMap wsCompileOptions
public static final String CLASS_PATH
public static final String TARGET_DIR
public static final String MAP_FILE
public abstract void generateWSDL(SEIConfig config) throws WsCompileInvokerException, IOException
SEIConfig
- containing webservice name, package name, namespace, SEI and its implementationWsCompileInvokerException
IOException
public abstract void generateSEI(WSDLConfig config) throws WsCompileInvokerException, IOException
WSDLConfig
- containing webservice name, package name, and WSDL locationWsCompileInvokerException
IOException
public abstract void generateClientStubs(WSDLConfig config) throws WsCompileInvokerException, IOException
WSDLConfig
- containing webservice name, package name, and WSDL locationWsCompileInvokerException
IOException
public void addWsCompileOption(String option, String operand)
String
- option the wscompile option to be usedString
- operand the operand for the option; null if none;public boolean removeWsCompileOption(String option)
String
- The option that has to be removedpublic void addWsCompileFeature(String feature)
String
- the feature to be setpublic boolean removeWsCompileFeature(String feature)
String
- the feature to be removedpublic void clearWsCompileOptionsAndFeatures()
Copyright © 2019. All rights reserved.