org.jvnet.ws.databinding
Interface Databinding.WSDLGenerator

Enclosing interface:
Databinding

public static interface Databinding.WSDLGenerator

WSDLGenerator is used to generate the WSDL representation of the service endpoint interface of the parent Databinding object.


Nested Class Summary
static interface Databinding.WSDLGenerator.WSDLResolver
          WSDLResolver is used by WSDLGenerator while generating WSDL and its associated documents.
 
Method Summary
 void generate(Databinding.WSDLGenerator.WSDLResolver wsdlResolver)
          Generates the WSDL using the wsdlResolver to output the generated documents.
 void generate(java.io.File outputDir, java.lang.String name)
          Generates the WSDL into the file directory
 Databinding.WSDLGenerator inlineSchema(boolean inline)
          Sets the inlineSchema boolean.
 Databinding.WSDLGenerator property(java.lang.String name, java.lang.Object value)
          Sets A property of the WSDLGenerator
 

Method Detail

inlineSchema

Databinding.WSDLGenerator inlineSchema(boolean inline)
Sets the inlineSchema boolean. When the inlineSchema is true, the generated schema documents are embedded within the type element of the generated WSDL. When the inlineSchema is false, the generated schema documents are generated as standalone schema documents and imported into the generated WSDL.

Parameters:
inline - the inlineSchema boolean.
Returns:

property

Databinding.WSDLGenerator property(java.lang.String name,
                                   java.lang.Object value)
Sets A property of the WSDLGenerator

Parameters:
name - The name of the property
value - The value of the property
Returns:
this WSDLGenerator instance

generate

void generate(Databinding.WSDLGenerator.WSDLResolver wsdlResolver)
Generates the WSDL using the wsdlResolver to output the generated documents.

Parameters:
wsdlResolver - The WSDLResolver

generate

void generate(java.io.File outputDir,
              java.lang.String name)
Generates the WSDL into the file directory

Parameters:
outputDir - The output file directory
name - The file name of the main WSDL document


Copyright © 2005-2013 Oracle Corporation. All Rights Reserved.