Class AbstractTrustManagersParametersFactoryBean
- java.lang.Object
-
- org.apache.camel.model.IdentifiedType
-
- org.apache.camel.core.xml.AbstractCamelFactoryBean<T>
-
- org.apache.camel.core.xml.util.jsse.AbstractJsseUtilFactoryBean<org.apache.camel.support.jsse.TrustManagersParameters>
-
- org.apache.camel.core.xml.util.jsse.AbstractTrustManagersParametersFactoryBean
-
- All Implemented Interfaces:
org.apache.camel.CamelContextAware
public abstract class AbstractTrustManagersParametersFactoryBean extends AbstractJsseUtilFactoryBean<org.apache.camel.support.jsse.TrustManagersParameters>
-
-
Constructor Summary
Constructors Constructor Description AbstractTrustManagersParametersFactoryBean()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected org.apache.camel.support.jsse.TrustManagersParameterscreateInstance()StringgetAlgorithm()protected abstract AbstractKeyStoreParametersFactoryBeangetKeyStore()org.apache.camel.support.jsse.TrustManagersParametersgetObject()Class<org.apache.camel.support.jsse.TrustManagersParameters>getObjectType()StringgetProvider()StringgetTrustManager()voidsetAlgorithm(String value)voidsetProvider(String value)voidsetTrustManager(String trustManager)-
Methods inherited from class org.apache.camel.core.xml.util.jsse.AbstractJsseUtilFactoryBean
isSingleton
-
Methods inherited from class org.apache.camel.core.xml.AbstractCamelFactoryBean
afterPropertiesSet, destroy, discoverDefaultCamelContext, getCamelContext, getCamelContextId, getCamelContextWithId, getCustomId, setCamelContext, setCamelContextId, setCustomId
-
-
-
-
Field Detail
-
provider
@Metadata(description="The optional provider identifier for the TrustManagerFactory used to create TrustManagers represented by this object\'s configuration.") protected String provider
-
algorithm
@Metadata(description="The optional algorithm name for the TrustManagerFactory used to create the TrustManagers represented by this objects configuration. See the Java Secure Socket Extension Reference Guide for information about standard algorithm names.") protected String algorithm
-
trustManager
@Metadata(description="To use a existing configured trust manager instead of using TrustManagerFactory to get the TrustManager.") protected String trustManager
-
-
Method Detail
-
getProvider
public String getProvider()
-
setProvider
public void setProvider(String value)
-
getAlgorithm
public String getAlgorithm()
-
setAlgorithm
public void setAlgorithm(String value)
-
getTrustManager
public String getTrustManager()
-
setTrustManager
public void setTrustManager(String trustManager)
-
getObject
public org.apache.camel.support.jsse.TrustManagersParameters getObject() throws Exception- Specified by:
getObjectin classAbstractJsseUtilFactoryBean<org.apache.camel.support.jsse.TrustManagersParameters>- Throws:
Exception
-
getObjectType
public Class<org.apache.camel.support.jsse.TrustManagersParameters> getObjectType()
- Specified by:
getObjectTypein classAbstractJsseUtilFactoryBean<org.apache.camel.support.jsse.TrustManagersParameters>
-
createInstance
protected org.apache.camel.support.jsse.TrustManagersParameters createInstance() throws Exception- Throws:
Exception
-
getKeyStore
protected abstract AbstractKeyStoreParametersFactoryBean getKeyStore()
-
-