public class CertStoreType extends Object
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>
Modifier and Type | Field and Description |
---|---|
protected String |
file
This attribute specifies the File location of the certificate store.
|
protected String |
resource
This attribute specifies the Resource location of the certificate store.
|
protected String |
type
This attribute specifies the type of the certstore.
|
protected String |
url
This attribute specifies the URL location of the certificate store.
|
Constructor and Description |
---|
CertStoreType() |
Modifier and Type | Method and Description |
---|---|
String |
getFile()
Gets the value of the file property.
|
String |
getResource()
Gets the value of the resource property.
|
String |
getType()
Gets the value of the type property.
|
String |
getUrl()
Gets the value of the url property.
|
boolean |
isSetFile() |
boolean |
isSetResource() |
boolean |
isSetType() |
boolean |
isSetUrl() |
void |
setFile(String value)
Sets the value of the file property.
|
void |
setResource(String value)
Sets the value of the resource property.
|
void |
setType(String value)
Sets the value of the type property.
|
void |
setUrl(String value)
Sets the value of the url property.
|
protected String type
protected String file
protected String resource
protected String url
public String getType()
This attribute specifies the type of the certstore. It is highly correlated to the provider. Most common examples are "jks" "pkcs12".
String
public void setType(String value)
public boolean isSetType()
public String getFile()
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.
String
public void setFile(String value)
public boolean isSetFile()
public String getResource()
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.
String
public void setResource(String value)
value
- allowed object is
String
getResource()
public boolean isSetResource()
public String getUrl()
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.
String
public void setUrl(String value)
public boolean isSetUrl()
Apache CXF