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

org.apache.cxf.configuration.security.TLSServerParametersType 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.12.06 at 11:51:59 AM 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 TLSServerParametersType complex type. * *

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

 * <complexType name="TLSServerParametersType">
 *   <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="clientAuthentication" type="{http://cxf.apache.org/configuration/security}ClientAuthentication" 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="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 = "TLSServerParametersType", propOrder = { }) public class TLSServerParametersType { protected KeyManagersType keyManagers; protected TrustManagersType trustManagers; protected CipherSuites cipherSuites; protected FiltersType cipherSuitesFilter; protected SecureRandomParameters secureRandomParameters; protected ClientAuthentication clientAuthentication; protected CertificateConstraintsType certConstraints; protected String certAlias; @XmlAttribute(name = "jsseProvider") protected String jsseProvider; @XmlAttribute(name = "secureSocketProtocol") 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 clientAuthentication property. * * @return * possible object is * {@link ClientAuthentication } * */ public ClientAuthentication getClientAuthentication() { return clientAuthentication; } /** * Sets the value of the clientAuthentication property. * * @param value * allowed object is * {@link ClientAuthentication } * */ public void setClientAuthentication(ClientAuthentication value) { this.clientAuthentication = value; } public boolean isSetClientAuthentication() { return (this.clientAuthentication!= 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); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy