Class KeyStoreType
- java.lang.Object
-
- org.apache.cxf.configuration.security.KeyStoreType
-
public class KeyStoreType extends Object
A KeyStoreType represents the information needed to load a collection of key and certificate material from a desired location. 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 KeyStoreType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KeyStoreType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="provider" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="url" 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" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description KeyStoreType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFile()Gets the value of the file property.StringgetPassword()Gets the value of the password property.StringgetProvider()Gets the value of the provider 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()booleanisSetPassword()booleanisSetProvider()booleanisSetResource()booleanisSetType()booleanisSetUrl()voidsetFile(String value)Sets the value of the file property.voidsetPassword(String value)Sets the value of the password property.voidsetProvider(String value)Sets the value of the provider 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.
-
-
-
Method Detail
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
isSetType
public boolean isSetType()
-
getPassword
public String getPassword()
Gets the value of the password property.- Returns:
- possible object is
String
-
setPassword
public void setPassword(String value)
Sets the value of the password property.- Parameters:
value- allowed object isString
-
isSetPassword
public boolean isSetPassword()
-
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()
-
getUrl
public String getUrl()
Gets the value of the url property.- Returns:
- possible object is
String
-
setUrl
public void setUrl(String value)
Sets the value of the url property.- Parameters:
value- allowed object isString
-
isSetUrl
public boolean isSetUrl()
-
getFile
public String getFile()
Gets the value of the file property.- Returns:
- possible object is
String
-
setFile
public void setFile(String value)
Sets the value of the file property.- Parameters:
value- allowed object isString
-
isSetFile
public boolean isSetFile()
-
getResource
public String getResource()
Gets the value of the resource property.- Returns:
- possible object is
String
-
setResource
public void setResource(String value)
Sets the value of the resource property.- Parameters:
value- allowed object isString
-
isSetResource
public boolean isSetResource()
-
-