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

org.apache.cxf.transports.http_jetty.configuration.JettyHTTPServerEngineConfigType 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:58:23 PM EST 
//


package org.apache.cxf.transports.http_jetty.configuration;

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;
import org.apache.cxf.configuration.security.TLSServerParametersType;


/**
 * 

Java class for JettyHTTPServerEngineConfigType complex type. * *

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

 * <complexType name="JettyHTTPServerEngineConfigType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice minOccurs="0">
 *           <element name="tlsServerParameters" type="{http://cxf.apache.org/configuration/security}TLSServerParametersType"/>
 *           <element name="tlsServerParametersRef" type="{http://cxf.apache.org/transports/http-jetty/configuration}ParametersRefType"/>
 *         </choice>
 *         <choice minOccurs="0">
 *           <element name="threadingParameters" type="{http://cxf.apache.org/transports/http-jetty/configuration}ThreadingParametersType"/>
 *           <element name="threadingParametersRef" type="{http://cxf.apache.org/transports/http-jetty/configuration}ParametersRefType"/>
 *         </choice>
 *         <element name="connector" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="handlers" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="sessionSupport" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="reuseAddress" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="continuationsEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JettyHTTPServerEngineConfigType", propOrder = { "tlsServerParameters", "tlsServerParametersRef", "threadingParameters", "threadingParametersRef", "connector", "handlers", "sessionSupport", "reuseAddress" }) public class JettyHTTPServerEngineConfigType { @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected TLSServerParametersType tlsServerParameters; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected ParametersRefType tlsServerParametersRef; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected ThreadingParametersType threadingParameters; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected ParametersRefType threadingParametersRef; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected Object connector; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected Object handlers; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected Boolean sessionSupport; @XmlElement(namespace = "http://cxf.apache.org/transports/http-jetty/configuration") protected Boolean reuseAddress; @XmlAttribute protected Boolean continuationsEnabled; @XmlAttribute(required = true) protected int port; /** * Gets the value of the tlsServerParameters property. * * @return * possible object is * {@link TLSServerParametersType } * */ public TLSServerParametersType getTlsServerParameters() { return tlsServerParameters; } /** * Sets the value of the tlsServerParameters property. * * @param value * allowed object is * {@link TLSServerParametersType } * */ public void setTlsServerParameters(TLSServerParametersType value) { this.tlsServerParameters = value; } /** * Gets the value of the tlsServerParametersRef property. * * @return * possible object is * {@link ParametersRefType } * */ public ParametersRefType getTlsServerParametersRef() { return tlsServerParametersRef; } /** * Sets the value of the tlsServerParametersRef property. * * @param value * allowed object is * {@link ParametersRefType } * */ public void setTlsServerParametersRef(ParametersRefType value) { this.tlsServerParametersRef = value; } /** * Gets the value of the threadingParameters property. * * @return * possible object is * {@link ThreadingParametersType } * */ public ThreadingParametersType getThreadingParameters() { return threadingParameters; } /** * Sets the value of the threadingParameters property. * * @param value * allowed object is * {@link ThreadingParametersType } * */ public void setThreadingParameters(ThreadingParametersType value) { this.threadingParameters = value; } /** * Gets the value of the threadingParametersRef property. * * @return * possible object is * {@link ParametersRefType } * */ public ParametersRefType getThreadingParametersRef() { return threadingParametersRef; } /** * Sets the value of the threadingParametersRef property. * * @param value * allowed object is * {@link ParametersRefType } * */ public void setThreadingParametersRef(ParametersRefType value) { this.threadingParametersRef = value; } /** * Gets the value of the connector property. * * @return * possible object is * {@link Object } * */ public Object getConnector() { return connector; } /** * Sets the value of the connector property. * * @param value * allowed object is * {@link Object } * */ public void setConnector(Object value) { this.connector = value; } /** * Gets the value of the handlers property. * * @return * possible object is * {@link Object } * */ public Object getHandlers() { return handlers; } /** * Sets the value of the handlers property. * * @param value * allowed object is * {@link Object } * */ public void setHandlers(Object value) { this.handlers = value; } /** * Gets the value of the sessionSupport property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSessionSupport() { return sessionSupport; } /** * Sets the value of the sessionSupport property. * * @param value * allowed object is * {@link Boolean } * */ public void setSessionSupport(Boolean value) { this.sessionSupport = value; } /** * Gets the value of the reuseAddress property. * * @return * possible object is * {@link Boolean } * */ public Boolean isReuseAddress() { return reuseAddress; } /** * Sets the value of the reuseAddress property. * * @param value * allowed object is * {@link Boolean } * */ public void setReuseAddress(Boolean value) { this.reuseAddress = value; } /** * Gets the value of the continuationsEnabled property. * * @return * possible object is * {@link Boolean } * */ public Boolean isContinuationsEnabled() { return continuationsEnabled; } /** * Sets the value of the continuationsEnabled property. * * @param value * allowed object is * {@link Boolean } * */ public void setContinuationsEnabled(Boolean value) { this.continuationsEnabled = value; } /** * Gets the value of the port property. * */ public int getPort() { return port; } /** * Sets the value of the port property. * */ public void setPort(int value) { this.port = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy