Package io.quarkiverse.cxf
Interface CxfConfig
-
@ConfigMapping(prefix="quarkus.cxf") @ConfigRoot(phase=RUN_TIME) public interface CxfConfig
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceCxfConfig.InternalConfig
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Map<String,CxfClientConfig>clients()Configure client proxies.Map<String,CxfEndpointConfig>endpoints()Choose the path of each web services.default CxfClientConfiggetClient(String key)CxfConfig.InternalConfiginternal()This exists just as a convenient way to get aCxfClientConfigwith all defaults set.default booleanisClientPresent(String key)LoggingConfig.GlobalLoggingConfiglogging()Global logging related configuration
-
-
-
Method Detail
-
endpoints
@WithName("endpoint") Map<String,CxfEndpointConfig> endpoints()Choose the path of each web services.
-
clients
@WithName("client") Map<String,CxfClientConfig> clients()Configure client proxies.
-
internal
CxfConfig.InternalConfig internal()
This exists just as a convenient way to get aCxfClientConfigwith all defaults set. It is not intended to be used by end users.
-
logging
LoggingConfig.GlobalLoggingConfig logging()
Global logging related configuration
-
isClientPresent
default boolean isClientPresent(String key)
-
getClient
default CxfClientConfig getClient(String key)
-
-