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

org.apache.cxf.transports.http_jetty.configuration.JettyHTTPServerEngineFactoryConfigType Maven / Gradle / Ivy

The 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: 2014.02.14 at 07:26:12 PM EST 
//


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

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for JettyHTTPServerEngineFactoryConfigType complex type. * *

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

 * <complexType name="JettyHTTPServerEngineFactoryConfigType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="identifiedTLSServerParameters" type="{http://cxf.apache.org/transports/http-jetty/configuration}TLSServerParametersIdentifiedType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="identifiedThreadingParameters" type="{http://cxf.apache.org/transports/http-jetty/configuration}ThreadingParametersIdentifiedType" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="engine" type="{http://cxf.apache.org/transports/http-jetty/configuration}JettyHTTPServerEngineConfigType" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="bus" type="{http://www.w3.org/2001/XMLSchema}string" default="cxf" />
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JettyHTTPServerEngineFactoryConfigType", propOrder = { "identifiedTLSServerParameters", "identifiedThreadingParameters", "engine" }) public class JettyHTTPServerEngineFactoryConfigType { protected List identifiedTLSServerParameters; protected List identifiedThreadingParameters; protected List engine; @XmlAttribute(name = "bus") protected String bus; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; /** * Gets the value of the identifiedTLSServerParameters property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the identifiedTLSServerParameters property. * *

* For example, to add a new item, do as follows: *

     *    getIdentifiedTLSServerParameters().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TLSServerParametersIdentifiedType } * * */ public List getIdentifiedTLSServerParameters() { if (identifiedTLSServerParameters == null) { identifiedTLSServerParameters = new ArrayList(); } return this.identifiedTLSServerParameters; } /** * Gets the value of the identifiedThreadingParameters property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the identifiedThreadingParameters property. * *

* For example, to add a new item, do as follows: *

     *    getIdentifiedThreadingParameters().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ThreadingParametersIdentifiedType } * * */ public List getIdentifiedThreadingParameters() { if (identifiedThreadingParameters == null) { identifiedThreadingParameters = new ArrayList(); } return this.identifiedThreadingParameters; } /** * Gets the value of the engine property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the engine property. * *

* For example, to add a new item, do as follows: *

     *    getEngine().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JettyHTTPServerEngineConfigType } * * */ public List getEngine() { if (engine == null) { engine = new ArrayList(); } return this.engine; } /** * Gets the value of the bus property. * * @return * possible object is * {@link String } * */ public String getBus() { if (bus == null) { return "cxf"; } else { return bus; } } /** * Sets the value of the bus property. * * @param value * allowed object is * {@link String } * */ public void setBus(String value) { this.bus = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy