Provides factory and interface of Java2WSDL tool.
In case that you need an API support of Systinet Server Java2WSDL tool, you can use this package.
Example:
// get a tool instance via static factory
Java2WSDL java2WSDL = Java2WSDLFactory.newJava2WSDL();
// call Java2WSDL to process and generate the WSDL file
java2WSDL.process(MyService.class);
// or generate a javax.wsdl.Definition instance for MyService class
Definition def = java2wsdl.generateDefinition(Class clazz);