Package org.idoox.wasp.tools.java2wsdl

Provides factory and interface of Java2WSDL tool.

See:
          Description

Interface Summary
Java2WSDL The Java2WSDL interface is an interface of for the WSDL generator tool.
 

Class Summary
Java2WSDL.ServiceDefinition Service definition.
Java2WSDLFactory A factory which creates an implementation of Java2WSDL interface.
 

Package org.idoox.wasp.tools.java2wsdl Description

Provides factory and interface of Java2WSDL tool.

In case that you need an API support of WSO2 SOA Enablement 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 Also:
Java2WSDLFactory, Java2WSDL