Interface WSDLGenerator
-
- All Known Implementing Classes:
DatabindingProviderImpl.JaxwsWsdlGen
public interface WSDLGeneratorWSDLGenerator is used to generate the WSDL representation of the service endpoint interface of the parent Databinding object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidgenerate(WSDLResolver wsdlResolver)Generates the WSDL using the wsdlResolver to output the generated documents.voidgenerate(File outputDir, String name)Generates the WSDL into the file directoryWSDLGeneratorinlineSchema(boolean inline)Sets the inlineSchema boolean.WSDLGeneratorproperty(String name, Object value)Sets A property of the WSDLGenerator
-
-
-
Method Detail
-
inlineSchema
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
WSDLGenerator property(String name, Object value)
Sets A property of the WSDLGenerator- Parameters:
name- The name of the propertyvalue- The value of the property- Returns:
- this WSDLGenerator instance
-
generate
void generate(WSDLResolver wsdlResolver)
Generates the WSDL using the wsdlResolver to output the generated documents.- Parameters:
wsdlResolver- The WSDLResolver
-
-