Package io.quarkiverse.cxf
Class CxfClientConfig
- java.lang.Object
-
- io.quarkiverse.cxf.CxfClientConfig
-
public class CxfClientConfig extends Object
A class that provides configurable options of a CXF client.
-
-
Field Summary
Fields Modifier and Type Field Description booleanalternativeIndicates whether this is an alternative proxy client configuration.Optional<String>clientEndpointUrlThe client endpoint urlOptional<String>endpointNameThe client endpoint nameOptional<String>endpointNamespaceThe client endpoint namespaceOptional<List<String>>featuresThe list of Feature classOptional<List<String>>inFaultInterceptorsThe comma-separated list of InFaultInterceptor classOptional<List<String>>inInterceptorsThe comma-separated list of InInterceptor classOptional<List<String>>outFaultInterceptorsThe comma-separated list of OutFaultInterceptor classOptional<List<String>>outInterceptorsThe comma-separated list of OutInterceptor classOptional<String>passwordThe password for HTTP Basic authOptional<String>serviceInterfaceThe client interfaceOptional<String>soapBindingThe url of SOAP Binding a list of standard value : https://docs.oracle.com/javase/7/docs/api/constant-values.html#javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDINGOptional<String>usernameThe username for HTTP Basic authOptional<String>wsdlPathThe wsdl path
-
Constructor Summary
Constructors Constructor Description CxfClientConfig()
-
-
-
Field Detail
-
soapBinding
@ConfigItem public Optional<String> soapBinding
The url of SOAP Binding a list of standard value : https://docs.oracle.com/javase/7/docs/api/constant-values.html#javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDING
-
endpointNamespace
@ConfigItem public Optional<String> endpointNamespace
The client endpoint namespace
-
inInterceptors
@ConfigItem public Optional<List<String>> inInterceptors
The comma-separated list of InInterceptor class
-
outInterceptors
@ConfigItem public Optional<List<String>> outInterceptors
The comma-separated list of OutInterceptor class
-
outFaultInterceptors
@ConfigItem public Optional<List<String>> outFaultInterceptors
The comma-separated list of OutFaultInterceptor class
-
inFaultInterceptors
@ConfigItem public Optional<List<String>> inFaultInterceptors
The comma-separated list of InFaultInterceptor class
-
alternative
@ConfigItem public boolean alternative
Indicates whether this is an alternative proxy client configuration. If true, then this configuration is ignored when configuring a client without annotation @CXF.
-
-