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: 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.05.30 at 11:00:48 AM EDT 
//


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.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://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" minOccurs="0"/>
 *         <element name="reuseAddress" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="port" use="required" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedInt" />
 *       <attribute name="host" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="continuationsEnabled" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
 *       <attribute name="maxIdleTime" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedInt" />
 *       <attribute name="sendServerVersion" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JettyHTTPServerEngineConfigType", propOrder = { "tlsServerParameters", "tlsServerParametersRef", "threadingParameters", "threadingParametersRef", "connector", "handlers", "sessionSupport", "reuseAddress" }) public class JettyHTTPServerEngineConfigType { protected TLSServerParametersType tlsServerParameters; protected ParametersRefType tlsServerParametersRef; protected ThreadingParametersType threadingParameters; protected ParametersRefType threadingParametersRef; protected Object connector; protected Object handlers; protected Boolean sessionSupport; protected Boolean reuseAddress; @XmlAttribute(name = "port", required = true) protected Integer port; @XmlAttribute(name = "host") protected String host; @XmlAttribute(name = "continuationsEnabled") protected Boolean continuationsEnabled; @XmlAttribute(name = "maxIdleTime") protected Integer maxIdleTime; @XmlAttribute(name = "sendServerVersion") protected Boolean sendServerVersion; /** * 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 port property. * * @return * possible object is * {@link Integer } * */ public Integer getPort() { return port; } /** * Sets the value of the port property. * * @param value * allowed object is * {@link Integer } * */ public void setPort(Integer value) { this.port = value; } /** * Gets the value of the host property. * * @return * possible object is * {@link String } * */ public String getHost() { return host; } /** * Sets the value of the host property. * * @param value * allowed object is * {@link String } * */ public void setHost(String value) { this.host = 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 maxIdleTime property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxIdleTime() { return maxIdleTime; } /** * Sets the value of the maxIdleTime property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxIdleTime(Integer value) { this.maxIdleTime = value; } /** * Gets the value of the sendServerVersion property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSendServerVersion() { return sendServerVersion; } /** * Sets the value of the sendServerVersion property. * * @param value * allowed object is * {@link Boolean } * */ public void setSendServerVersion(Boolean value) { this.sendServerVersion = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy