Package io.mateo.cxf.codegen.wsdl2js
Class Wsdl2JsOptions
- java.lang.Object
-
- io.mateo.cxf.codegen.wsdl2js.Wsdl2JsOptions
-
public abstract class Wsdl2JsOptions extends Object
Options for thewsdl2js
tool.- See Also:
- WSDL to JavaScript options
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Wsdl2JsOptions.UriPrefixPair
Container class for URI.
-
Constructor Summary
Constructors Constructor Description Wsdl2JsOptions(String taskName, ObjectFactory objects, ProjectLayout layout)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RegularFileProperty
getCatalog()
Specifies the XML catalog to use for resolving imported schemas and WSDL documents.DirectoryProperty
getOutputDir()
Specifies the directory the generated code files are written.ListProperty<Wsdl2JsOptions.UriPrefixPair>
getPackagePrefixes()
Specifies a mapping between the namespaces used in the WSDL document and the prefixes used in the generated JavaScript.Property<Boolean>
getQuiet()
Enables or disables quiet mode.Property<String>
getValidate()
Enables validating the WSDL before generating the code.Property<Boolean>
getVerbose()
Enables or disables verbosity.Property<String>
getWsdl()
Specifies the WSDL document from which JavaScript is generated fromProperty<String>
getWsdlVersion()
Specifies the WSDL version the tool expects.
-
-
-
Constructor Detail
-
Wsdl2JsOptions
@Inject public Wsdl2JsOptions(String taskName, ObjectFactory objects, ProjectLayout layout)
-
-
Method Detail
-
getWsdl
@Input public Property<String> getWsdl()
Specifies the WSDL document from which JavaScript is generated from- Returns:
- wsdl file
-
getWsdlVersion
@Input @Optional public Property<String> getWsdlVersion()
Specifies the WSDL version the tool expects.If not set,
wsdl2js
defaults toWSDL1.1
.- Returns:
- wsdl version
-
getPackagePrefixes
@Input @Optional public ListProperty<Wsdl2JsOptions.UriPrefixPair> getPackagePrefixes()
Specifies a mapping between the namespaces used in the WSDL document and the prefixes used in the generated JavaScript.The format is
URI=prefix
. In other words:[wsdl namespace]=prefix
- Returns:
- package prefixes
-
getCatalog
@InputFile @PathSensitive(RELATIVE) @Optional public RegularFileProperty getCatalog()
Specifies the XML catalog to use for resolving imported schemas and WSDL documents.- Returns:
- catalog
-
getValidate
@Input @Optional public Property<String> getValidate()
Enables validating the WSDL before generating the code.- Returns:
- validate WSDL
-
getVerbose
@Input @Optional public Property<Boolean> getVerbose()
Enables or disables verbosity. When enabled, displays comments during the code generation process.- Returns:
- verbosity indicator
-
getQuiet
@Input @Optional public Property<Boolean> getQuiet()
Enables or disables quiet mode. When enabled, suppresses comments during the code generation process.- Returns:
- quite mode enablement
-
getOutputDir
@OutputDirectory @Optional public DirectoryProperty getOutputDir()
Specifies the directory the generated code files are written.If not set, the convention is
"$buildDir/$taskName-wsdl2js-generated-sources"
- Returns:
- output directory
-
-