Package io.quarkiverse.cxf.deployment
Interface CxfBuildTimeConfig.Java2WsConfig
-
- Enclosing interface:
- CxfBuildTimeConfig
public static interface CxfBuildTimeConfig.Java2WsConfig
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanenabled()Iftruejava2wsWSDL generation is run whenever there are Java classes selected viaincludesandexcludesoptions; otherwisejava2wsis not executed.Map<String,CxfBuildTimeConfig.Java2WsParameterSet>namedParameterSets()A collection of named parameter sets for the CXFjava2wstool.CxfBuildTimeConfig.Java2WsParameterSetrootParameterSet()Parameters for the CXFjava2wstool.
-
-
-
Method Detail
-
enabled
@WithDefault("true") boolean enabled()Iftruejava2wsWSDL generation is run whenever there are Java classes selected viaincludesandexcludesoptions; otherwisejava2wsis not executed.
-
rootParameterSet
@WithParentName CxfBuildTimeConfig.Java2WsParameterSet rootParameterSet()
Parameters for the CXFjava2wstool. Use this when you want to generate WSDL files from all your Java classes annotated withWebService. You should usenamedParameterSets()instead if you need to invokejava2wswith different parameters for some of your Java classes.
-
namedParameterSets
@WithParentName Map<String,CxfBuildTimeConfig.Java2WsParameterSet> namedParameterSets()
A collection of named parameter sets for the CXFjava2wstool. Each entry selects a set of Java classes annotated withWebServiceand defines options to be used when invokingjava2wswith the selected classes.
-
-