//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2012.01.19 at 02:13:18 PM EST
//
package org.apache.cxf.configuration.security;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
*
* This structure specifies the JSSE based KeyManagers for a single
* Keystore.
*
*
* <p>Java class for KeyManagersType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="KeyManagersType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="keyStore" type="{http://cxf.apache.org/configuration/security}KeyStoreType" minOccurs="0"/>
* </sequence>
* <attribute name="keyPassword" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="provider" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="factoryAlgorithm" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KeyManagersType", propOrder = {
"keyStore"
})
public class KeyManagersType {
protected KeyStoreType keyStore;
@XmlAttribute(name = "keyPassword")
protected String keyPassword;
@XmlAttribute(name = "provider")
protected String provider;
@XmlAttribute(name = "factoryAlgorithm")
protected String factoryAlgorithm;
/**
* Gets the value of the keyStore property.
*
* @return
* possible object is
* {@link KeyStoreType }
*
*/
public KeyStoreType getKeyStore() {
return keyStore;
}
/**
* Sets the value of the keyStore property.
*
* @param value
* allowed object is
* {@link KeyStoreType }
*
*/
public void setKeyStore(KeyStoreType value) {
this.keyStore = value;
}
public boolean isSetKeyStore() {
return (this.keyStore!= null);
}
/**
* Gets the value of the keyPassword property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKeyPassword() {
return keyPassword;
}
/**
* Sets the value of the keyPassword property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKeyPassword(String value) {
this.keyPassword = value;
}
public boolean isSetKeyPassword() {
return (this.keyPassword!= null);
}
/**
* Gets the value of the provider property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProvider() {
return provider;
}
/**
* Sets the value of the provider property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProvider(String value) {
this.provider = value;
}
public boolean isSetProvider() {
return (this.provider!= null);
}
/**
* Gets the value of the factoryAlgorithm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFactoryAlgorithm() {
return factoryAlgorithm;
}
/**
* Sets the value of the factoryAlgorithm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFactoryAlgorithm(String value) {
this.factoryAlgorithm = value;
}
public boolean isSetFactoryAlgorithm() {
return (this.factoryAlgorithm!= null);
}
}
|