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

org.apache.cxf.configuration.security.TLSClientParametersType 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, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.02.05 at 01:54:07 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;


/**
 * 

Java class for TLSClientParametersType complex type. * *

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

 * <complexType name="TLSClientParametersType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="keyManagers" type="{http://cxf.apache.org/configuration/security}KeyManagersType" minOccurs="0"/>
 *         <element name="trustManagers" type="{http://cxf.apache.org/configuration/security}TrustManagersType" minOccurs="0"/>
 *         <element name="cipherSuites" type="{http://cxf.apache.org/configuration/security}CipherSuites" minOccurs="0"/>
 *         <element name="cipherSuitesFilter" type="{http://cxf.apache.org/configuration/security}FiltersType" minOccurs="0"/>
 *         <element name="secureRandomParameters" type="{http://cxf.apache.org/configuration/security}SecureRandomParameters" minOccurs="0"/>
 *       </all>
 *       <attribute name="disableCNCheck" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="jsseProvider" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="secureSocketProtocol" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TLSClientParametersType", propOrder = { }) public class TLSClientParametersType { @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected KeyManagersType keyManagers; @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected TrustManagersType trustManagers; @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected CipherSuites cipherSuites; @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected FiltersType cipherSuitesFilter; @XmlElement(namespace = "http://cxf.apache.org/configuration/security") protected SecureRandomParameters secureRandomParameters; @XmlAttribute protected Boolean disableCNCheck; @XmlAttribute protected String jsseProvider; @XmlAttribute protected String secureSocketProtocol; /** * Gets the value of the keyManagers property. * * @return * possible object is * {@link KeyManagersType } * */ public KeyManagersType getKeyManagers() { return keyManagers; } /** * Sets the value of the keyManagers property. * * @param value * allowed object is * {@link KeyManagersType } * */ public void setKeyManagers(KeyManagersType value) { this.keyManagers = value; } public boolean isSetKeyManagers() { return (this.keyManagers!= null); } /** * Gets the value of the trustManagers property. * * @return * possible object is * {@link TrustManagersType } * */ public TrustManagersType getTrustManagers() { return trustManagers; } /** * Sets the value of the trustManagers property. * * @param value * allowed object is * {@link TrustManagersType } * */ public void setTrustManagers(TrustManagersType value) { this.trustManagers = value; } public boolean isSetTrustManagers() { return (this.trustManagers!= null); } /** * Gets the value of the cipherSuites property. * * @return * possible object is * {@link CipherSuites } * */ public CipherSuites getCipherSuites() { return cipherSuites; } /** * Sets the value of the cipherSuites property. * * @param value * allowed object is * {@link CipherSuites } * */ public void setCipherSuites(CipherSuites value) { this.cipherSuites = value; } public boolean isSetCipherSuites() { return (this.cipherSuites!= null); } /** * Gets the value of the cipherSuitesFilter property. * * @return * possible object is * {@link FiltersType } * */ public FiltersType getCipherSuitesFilter() { return cipherSuitesFilter; } /** * Sets the value of the cipherSuitesFilter property. * * @param value * allowed object is * {@link FiltersType } * */ public void setCipherSuitesFilter(FiltersType value) { this.cipherSuitesFilter = value; } public boolean isSetCipherSuitesFilter() { return (this.cipherSuitesFilter!= null); } /** * Gets the value of the secureRandomParameters property. * * @return * possible object is * {@link SecureRandomParameters } * */ public SecureRandomParameters getSecureRandomParameters() { return secureRandomParameters; } /** * Sets the value of the secureRandomParameters property. * * @param value * allowed object is * {@link SecureRandomParameters } * */ public void setSecureRandomParameters(SecureRandomParameters value) { this.secureRandomParameters = value; } public boolean isSetSecureRandomParameters() { return (this.secureRandomParameters!= null); } /** * Gets the value of the disableCNCheck property. * * @return * possible object is * {@link Boolean } * */ public boolean isDisableCNCheck() { if (disableCNCheck == null) { return false; } else { return disableCNCheck; } } /** * Sets the value of the disableCNCheck property. * * @param value * allowed object is * {@link Boolean } * */ public void setDisableCNCheck(boolean value) { this.disableCNCheck = value; } public boolean isSetDisableCNCheck() { return (this.disableCNCheck!= null); } public void unsetDisableCNCheck() { this.disableCNCheck = null; } /** * Gets the value of the jsseProvider property. * * @return * possible object is * {@link String } * */ public String getJsseProvider() { return jsseProvider; } /** * Sets the value of the jsseProvider property. * * @param value * allowed object is * {@link String } * */ public void setJsseProvider(String value) { this.jsseProvider = value; } public boolean isSetJsseProvider() { return (this.jsseProvider!= null); } /** * Gets the value of the secureSocketProtocol property. * * @return * possible object is * {@link String } * */ public String getSecureSocketProtocol() { return secureSocketProtocol; } /** * Sets the value of the secureSocketProtocol property. * * @param value * allowed object is * {@link String } * */ public void setSecureSocketProtocol(String value) { this.secureSocketProtocol = value; } public boolean isSetSecureSocketProtocol() { return (this.secureSocketProtocol!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy