Class TrustManagersType
- java.lang.Object
-
- org.apache.cxf.configuration.security.TrustManagersType
-
public class TrustManagersType extends Object
This structure contains the specification of JSSE TrustManagers for a single Keystore used for trusted certificates.Java class for TrustManagersType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TrustManagersType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="keyStore" type="{http://cxf.apache.org/configuration/security}KeyStoreType" minOccurs="0"/> <element name="certStore" type="{http://cxf.apache.org/configuration/security}CertStoreType" minOccurs="0"/> </choice> <attribute name="provider" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="factoryAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CertStoreTypecertStoreprotected StringfactoryAlgorithmprotected KeyStoreTypekeyStoreprotected Stringproviderprotected Stringref
-
Constructor Summary
Constructors Constructor Description TrustManagersType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CertStoreTypegetCertStore()Gets the value of the certStore property.StringgetFactoryAlgorithm()Gets the value of the factoryAlgorithm property.KeyStoreTypegetKeyStore()Gets the value of the keyStore property.StringgetProvider()Gets the value of the provider property.StringgetRef()Gets the value of the ref property.booleanisSetCertStore()booleanisSetFactoryAlgorithm()booleanisSetKeyStore()booleanisSetProvider()booleanisSetRef()voidsetCertStore(CertStoreType value)Sets the value of the certStore property.voidsetFactoryAlgorithm(String value)Sets the value of the factoryAlgorithm property.voidsetKeyStore(KeyStoreType value)Sets the value of the keyStore property.voidsetProvider(String value)Sets the value of the provider property.voidsetRef(String value)Sets the value of the ref property.
-
-
-
Field Detail
-
keyStore
protected KeyStoreType keyStore
-
certStore
protected CertStoreType certStore
-
provider
protected String provider
-
factoryAlgorithm
protected String factoryAlgorithm
-
ref
protected String ref
-
-
Method Detail
-
getKeyStore
public KeyStoreType getKeyStore()
Gets the value of the keyStore property.- Returns:
- possible object is
KeyStoreType
-
setKeyStore
public void setKeyStore(KeyStoreType value)
Sets the value of the keyStore property.- Parameters:
value- allowed object isKeyStoreType
-
isSetKeyStore
public boolean isSetKeyStore()
-
getCertStore
public CertStoreType getCertStore()
Gets the value of the certStore property.- Returns:
- possible object is
CertStoreType
-
setCertStore
public void setCertStore(CertStoreType value)
Sets the value of the certStore property.- Parameters:
value- allowed object isCertStoreType
-
isSetCertStore
public boolean isSetCertStore()
-
getProvider
public String getProvider()
Gets the value of the provider property.- Returns:
- possible object is
String
-
setProvider
public void setProvider(String value)
Sets the value of the provider property.- Parameters:
value- allowed object isString
-
isSetProvider
public boolean isSetProvider()
-
getFactoryAlgorithm
public String getFactoryAlgorithm()
Gets the value of the factoryAlgorithm property.- Returns:
- possible object is
String
-
setFactoryAlgorithm
public void setFactoryAlgorithm(String value)
Sets the value of the factoryAlgorithm property.- Parameters:
value- allowed object isString
-
isSetFactoryAlgorithm
public boolean isSetFactoryAlgorithm()
-
getRef
public String getRef()
Gets the value of the ref property.- Returns:
- possible object is
String
-
setRef
public void setRef(String value)
Sets the value of the ref property.- Parameters:
value- allowed object isString
-
isSetRef
public boolean isSetRef()
-
-