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

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

There is a newer version: 3.0.0-milestone2
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.12.06 at 01:26:20 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 contains the specification of JSSE TrustManagers for
 *         a single Keystore used for trusted certificates.
 *         
 * 
 * 

Java class for TrustManagersType complex type. * *

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

 * <complexType name="TrustManagersType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="keyStore" type="{http://cxf.apache.org/configuration/security}KeyStoreType" minOccurs="0"/>
 *         <element name="certStore" type="{http://cxf.apache.org/configuration/security}CertStoreType" minOccurs="0"/>
 *       </choice>
 *       <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 = "TrustManagersType", propOrder = { "keyStore", "certStore" }) public class TrustManagersType { protected KeyStoreType keyStore; protected CertStoreType certStore; @XmlAttribute(name = "provider") protected String provider; @XmlAttribute(name = "factoryAlgorithm") protected String factoryAlgorithm; @XmlAttribute(name = "ref") protected String ref; /** * 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 certStore property. * * @return * possible object is * {@link CertStoreType } * */ public CertStoreType getCertStore() { return certStore; } /** * Sets the value of the certStore property. * * @param value * allowed object is * {@link CertStoreType } * */ public void setCertStore(CertStoreType value) { this.certStore = value; } public boolean isSetCertStore() { return (this.certStore!= 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); } /** * Gets the value of the ref property. * * @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 } * */ public void setRef(String value) { this.ref = value; } public boolean isSetRef() { return (this.ref!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy