All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.configuration.security.KeyManagersType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.02.14 at 07:19:12 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *         This structure specifies the JSSE based KeyManagers for a single
 *         Keystore.
 *         
 * 
 * 

Java class for KeyManagersType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <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" />
 *       <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeyManagersType", namespace = "http://cxf.apache.org/configuration/security", propOrder = { "keyStore" }) public class KeyManagersType { /** * This element specified the Keystore for these JSSE KeyManagers. * */ @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected KeyStoreType keyStore; /** * This attribute contains the password that unlocks the keys * within the keystore. * */ @XmlAttribute(name = "keyPassword") protected String keyPassword; /** * This attribute contains the KeyManagers provider name. * */ @XmlAttribute(name = "provider") protected String provider; /** * This attribute contains the algorithm the KeyManagers Factory * will use in creating the KeyManagers from the KeyStore. Most * common examples are "PKIX". * */ @XmlAttribute(name = "factoryAlgorithm") protected String factoryAlgorithm; /** * This attribute contains the reference to the KeyManagers bean. This * attribute allows the KeyManagers instance to be constructed by other * means and referenced from this object. * */ @XmlAttribute(name = "ref") protected String ref; /** * Gets the value of the keyStore property. *

* This element specified the Keystore for these JSSE KeyManagers. * * @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 } * * @see #getKeyStore() */ public void setKeyStore(KeyStoreType value) { this.keyStore = value; } public boolean isSetKeyStore() { return (this.keyStore!= null); } /** * Gets the value of the keyPassword property. *

* This attribute contains the password that unlocks the keys * within the keystore. * * @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 } * * @see #getKeyPassword() */ public void setKeyPassword(String value) { this.keyPassword = value; } public boolean isSetKeyPassword() { return (this.keyPassword!= null); } /** * Gets the value of the provider property. *

* This attribute contains the KeyManagers provider name. * * @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 } * * @see #getProvider() */ public void setProvider(String value) { this.provider = value; } public boolean isSetProvider() { return (this.provider!= null); } /** * Gets the value of the factoryAlgorithm property. *

* This attribute contains the algorithm the KeyManagers Factory * will use in creating the KeyManagers from the KeyStore. Most * common examples are "PKIX". * * @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 } * * @see #getFactoryAlgorithm() */ public void setFactoryAlgorithm(String value) { this.factoryAlgorithm = value; } public boolean isSetFactoryAlgorithm() { return (this.factoryAlgorithm!= null); } /** * Gets the value of the ref property. *

* This attribute contains the reference to the KeyManagers bean. This * attribute allows the KeyManagers instance to be constructed by other * means and referenced from this object. * * @return * possible object is * {@link String } * */ public String getRef() { return ref; } /** * Sets the value of the ref property. * * @param value * allowed object is * {@link String } * * @see #getRef() */ public void setRef(String value) { this.ref = value; } public boolean isSetRef() { return (this.ref!= null); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy