Package org.apache.camel
Interface SSLContextParametersAware
-
- All Superinterfaces:
CamelContextAware
public interface SSLContextParametersAware extends CamelContextAware
Indicates that an object is able to use the globalSSLContextParametersif configured.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleanisUseGlobalSslContextParameters()Determine if the implementing object is using global SSL context parameters.default SSLContextParametersretrieveGlobalSslContextParameters()Returns the globalSSLContextParametersif enabled on the implementing object, null otherwise.voidsetUseGlobalSslContextParameters(boolean useGlobalSslContextParameters)Enable usage of global SSL context parameters.-
Methods inherited from interface org.apache.camel.CamelContextAware
getCamelContext, setCamelContext
-
-
-
-
Method Detail
-
retrieveGlobalSslContextParameters
default SSLContextParameters retrieveGlobalSslContextParameters()
Returns the globalSSLContextParametersif enabled on the implementing object, null otherwise.
-
isUseGlobalSslContextParameters
boolean isUseGlobalSslContextParameters()
Determine if the implementing object is using global SSL context parameters.
-
setUseGlobalSslContextParameters
void setUseGlobalSslContextParameters(boolean useGlobalSslContextParameters)
Enable usage of global SSL context parameters.
-
-