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

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

There is a newer version: 2.7.18
Show 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: 2012.05.30 at 10:55:36 AM EDT 
//


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.
 *         
 * 
 * 

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" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy