Package io.quarkiverse.cxf.deployment
Interface CxfBuildTimeConfig.Wsdl2JavaConfig
-
- Enclosing interface:
- CxfBuildTimeConfig
public static interface CxfBuildTimeConfig.Wsdl2JavaConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanenabled()Iftruewsdl2javacode generation is run whenever there are WSDL resources found on default or custom defined locations; otherwisewsdl2javais not executed.Map<String,CxfBuildTimeConfig.Wsdl2JavaParameterSet>namedParameterSets()A collection of named parameter sets for the CXFwsdl2javatool.CxfBuildTimeConfig.Wsdl2JavaParameterSetrootParameterSet()Parameters for the CXFwsdl2javatool.
-
-
-
Method Detail
-
enabled
@WithDefault("true") boolean enabled()Iftruewsdl2javacode generation is run whenever there are WSDL resources found on default or custom defined locations; otherwisewsdl2javais not executed.
-
rootParameterSet
@WithParentName CxfBuildTimeConfig.Wsdl2JavaParameterSet rootParameterSet()
Parameters for the CXFwsdl2javatool. Use this when you want to generate Java classes from all your WSDL files using the samewsdl2javaparameters. You should usenamedParameterSets()instead if you need to invokewsdl2javawith different parameters for some of your WSDL files.
-
namedParameterSets
@WithParentName Map<String,CxfBuildTimeConfig.Wsdl2JavaParameterSet> namedParameterSets()
A collection of named parameter sets for the CXFwsdl2javatool. Each entry selects a set of WSDL files and defines options to be used when invokingwsdl2javawith the selected files.
-
-