Class CertStoreType
- java.lang.Object
-
- org.apache.cxf.configuration.security.CertStoreType
-
public class CertStoreType extends Object
A CertStoreType represents a catenated sequence of X.509 certificates, in PEM or DER format. The "url", "file", and "resource" attributes are intended to be mutually exclusive, though this assumption is not encoded in schema. The precedence order observed by the runtime is 1) "file", 2) "resource", and 3) "url".Java class for CertStoreType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CertStoreType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="file" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="resource" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected StringfileThis attribute specifies the File location of the certificate store.protected StringresourceThis attribute specifies the Resource location of the certificate store.protected StringtypeThis attribute specifies the type of the certstore.protected StringurlThis attribute specifies the URL location of the certificate store.
-
Constructor Summary
Constructors Constructor Description CertStoreType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFile()Gets the value of the file property.StringgetResource()Gets the value of the resource property.StringgetType()Gets the value of the type property.StringgetUrl()Gets the value of the url property.booleanisSetFile()booleanisSetResource()booleanisSetType()booleanisSetUrl()voidsetFile(String value)Sets the value of the file property.voidsetResource(String value)Sets the value of the resource property.voidsetType(String value)Sets the value of the type property.voidsetUrl(String value)Sets the value of the url property.
-
-
-
Field Detail
-
type
protected String type
This attribute specifies the type of the certstore. It is highly correlated to the provider. Most common examples are "jks" "pkcs12".
-
file
protected String file
This attribute specifies the File location of the certificate store. This element should be a properly accessible file from the working directory. Only one attribute of "url", "file", or "resource" is allowed.
-
resource
protected String resource
This attribute specifies the Resource location of the certificate store. This element should be a properly accessible on the classpath. Only one attribute of "url", "file", or "resource" is allowed.
-
url
protected String url
This attribute specifies the URL location of the certificate store. This element should be a properly accessible URL, such as "http://..." "file:///...", etc. Only one attribute of "url", "file", or "resource" is allowed.
-
-
Method Detail
-
getType
public String getType()
Gets the value of the type property.This attribute specifies the type of the certstore. It is highly correlated to the provider. Most common examples are "jks" "pkcs12".
- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.
-
isSetType
public boolean isSetType()
-
getFile
public String getFile()
Gets the value of the file property.This attribute specifies the File location of the certificate store. This element should be a properly accessible file from the working directory. Only one attribute of "url", "file", or "resource" is allowed.
- Returns:
- possible object is
String
-
setFile
public void setFile(String value)
Sets the value of the file property.
-
isSetFile
public boolean isSetFile()
-
getResource
public String getResource()
Gets the value of the resource property.This attribute specifies the Resource location of the certificate store. This element should be a properly accessible on the classpath. Only one attribute of "url", "file", or "resource" is allowed.
- Returns:
- possible object is
String
-
setResource
public void setResource(String value)
Sets the value of the resource property.- Parameters:
value- allowed object isString- See Also:
getResource()
-
isSetResource
public boolean isSetResource()
-
getUrl
public String getUrl()
Gets the value of the url property.This attribute specifies the URL location of the certificate store. This element should be a properly accessible URL, such as "http://..." "file:///...", etc. Only one attribute of "url", "file", or "resource" is allowed.
- Returns:
- possible object is
String
-
setUrl
public void setUrl(String value)
Sets the value of the url property.
-
isSetUrl
public boolean isSetUrl()
-
-