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, 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: 2013.01.04 at 03:34:52 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;


/**
 * 

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"/>
 *         <element name="certConstraints" type="{http://cxf.apache.org/configuration/security}CertificateConstraintsType" minOccurs="0"/>
 *         <element name="certAlias" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </all>
 *       <attribute name="useHttpsURLConnectionDefaultSslSocketFactory" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" default="false" />
 *       <attribute name="useHttpsURLConnectionDefaultHostnameVerifier" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" default="false" />
 *       <attribute name="disableCNCheck" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" default="false" />
 *       <attribute name="jsseProvider" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="secureSocketProtocol" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sslCacheTimeout" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TLSClientParametersType", propOrder = { }) public class TLSClientParametersType { protected KeyManagersType keyManagers; protected TrustManagersType trustManagers; protected CipherSuites cipherSuites; protected FiltersType cipherSuitesFilter; protected SecureRandomParameters secureRandomParameters; protected CertificateConstraintsType certConstraints; protected String certAlias; @XmlAttribute(name = "useHttpsURLConnectionDefaultSslSocketFactory") protected Boolean useHttpsURLConnectionDefaultSslSocketFactory; @XmlAttribute(name = "useHttpsURLConnectionDefaultHostnameVerifier") protected Boolean useHttpsURLConnectionDefaultHostnameVerifier; @XmlAttribute(name = "disableCNCheck") protected Boolean disableCNCheck; @XmlAttribute(name = "jsseProvider") protected String jsseProvider; @XmlAttribute(name = "secureSocketProtocol") protected String secureSocketProtocol; @XmlAttribute(name = "sslCacheTimeout") protected Integer sslCacheTimeout; /** * 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 certConstraints property. * * @return * possible object is * {@link CertificateConstraintsType } * */ public CertificateConstraintsType getCertConstraints() { return certConstraints; } /** * Sets the value of the certConstraints property. * * @param value * allowed object is * {@link CertificateConstraintsType } * */ public void setCertConstraints(CertificateConstraintsType value) { this.certConstraints = value; } public boolean isSetCertConstraints() { return (this.certConstraints!= null); } /** * Gets the value of the certAlias property. * * @return * possible object is * {@link String } * */ public String getCertAlias() { return certAlias; } /** * Sets the value of the certAlias property. * * @param value * allowed object is * {@link String } * */ public void setCertAlias(String value) { this.certAlias = value; } public boolean isSetCertAlias() { return (this.certAlias!= 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); } /** * Gets the value of the sslCacheTimeout property. * * @return * possible object is * {@link Integer } * */ public int getSslCacheTimeout() { return sslCacheTimeout; } /** * Sets the value of the sslCacheTimeout property. * * @param value * allowed object is * {@link Integer } * */ public void setSslCacheTimeout(int value) { this.sslCacheTimeout = value; } public boolean isSetSslCacheTimeout() { return (this.sslCacheTimeout!= null); } public void unsetSslCacheTimeout() { this.sslCacheTimeout = null; } /** * Sets the value of the useHttpsURLConnectionDefaultSslSocketFactory property. * */ public void setUseHttpsURLConnectionDefaultSslSocketFactory(boolean value) { useHttpsURLConnectionDefaultSslSocketFactory = value; } public void unsetUseHttpsURLConnectionDefaultSslSocketFactory() { useHttpsURLConnectionDefaultSslSocketFactory = null; } public boolean isSetUseHttpsURLConnectionDefaultSslSocketFactory() { return (this.useHttpsURLConnectionDefaultSslSocketFactory!= null); } /** * Gets the value of the useHttpsURLConnectionDefaultSslSocketFactory property. * */ public boolean isUseHttpsURLConnectionDefaultSslSocketFactory() { if (null == useHttpsURLConnectionDefaultSslSocketFactory) { return false; } return useHttpsURLConnectionDefaultSslSocketFactory; } /** * Sets the value of the useHttpsURLConnectionDefaultHostnameVerifier property. * */ public void setUseHttpsURLConnectionDefaultHostnameVerifier(boolean value) { useHttpsURLConnectionDefaultHostnameVerifier = value; } public void unsetUseHttpsURLConnectionDefaultHostnameVerifier() { useHttpsURLConnectionDefaultHostnameVerifier = null; } public boolean isSetUseHttpsURLConnectionDefaultHostnameVerifier() { return (this.useHttpsURLConnectionDefaultHostnameVerifier!= null); } /** * Gets the value of the useHttpsURLConnectionDefaultHostnameVerifier property. * */ public boolean isUseHttpsURLConnectionDefaultHostnameVerifier() { if (null == useHttpsURLConnectionDefaultHostnameVerifier) { return false; } return useHttpsURLConnectionDefaultHostnameVerifier; } /** * Sets the value of the disableCNCheck property. * */ public void setDisableCNCheck(boolean value) { disableCNCheck = value; } public void unsetDisableCNCheck() { disableCNCheck = null; } public boolean isSetDisableCNCheck() { return (this.disableCNCheck!= null); } /** * Gets the value of the disableCNCheck property. * */ public boolean isDisableCNCheck() { if (null == disableCNCheck) { return false; } return disableCNCheck; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy