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);

    

@since WASP 4.5 @see org.idoox.wasp.tools.java2wsdl.Java2WSDLFactory @see org.idoox.wasp.tools.java2wsdl.Java2WSDL