Class NettyHttpServerEngineFactoryConfigType
- java.lang.Object
-
- org.apache.cxf.transports.http_netty_server.configuration.NettyHttpServerEngineFactoryConfigType
-
public class NettyHttpServerEngineFactoryConfigType extends Object
Java class for NettyHttpServerEngineFactoryConfigType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="NettyHttpServerEngineFactoryConfigType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="identifiedTLSServerParameters" type="{http://cxf.apache.org/transports/http-netty-server/configuration}TLSServerParametersIdentifiedType" maxOccurs="unbounded" minOccurs="0"/> <element name="identifiedThreadingParameters" type="{http://cxf.apache.org/transports/http-netty-server/configuration}ThreadingParametersIdentifiedType" maxOccurs="unbounded" minOccurs="0"/> <element name="engine" type="{http://cxf.apache.org/transports/http-netty-server/configuration}NettyHttpServerEngineConfigType" 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>
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringbusprotected List<NettyHttpServerEngineConfigType>engineprotected Stringidprotected List<ThreadingParametersIdentifiedType>identifiedThreadingParametersprotected List<TLSServerParametersIdentifiedType>identifiedTLSServerParameters
-
Constructor Summary
Constructors Constructor Description NettyHttpServerEngineFactoryConfigType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBus()Gets the value of the bus property.List<NettyHttpServerEngineConfigType>getEngine()Gets the value of the engine property.StringgetId()Gets the value of the id property.List<ThreadingParametersIdentifiedType>getIdentifiedThreadingParameters()Gets the value of the identifiedThreadingParameters property.List<TLSServerParametersIdentifiedType>getIdentifiedTLSServerParameters()Gets the value of the identifiedTLSServerParameters property.voidsetBus(String value)Sets the value of the bus property.voidsetId(String value)Sets the value of the id property.voidunsetBus()
-
-
-
Field Detail
-
identifiedTLSServerParameters
protected List<TLSServerParametersIdentifiedType> identifiedTLSServerParameters
-
identifiedThreadingParameters
protected List<ThreadingParametersIdentifiedType> identifiedThreadingParameters
-
engine
protected List<NettyHttpServerEngineConfigType> engine
-
bus
protected String bus
-
id
protected String id
-
-
Method Detail
-
getIdentifiedTLSServerParameters
public List<TLSServerParametersIdentifiedType> getIdentifiedTLSServerParameters()
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
setmethod 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
TLSServerParametersIdentifiedType
-
getIdentifiedThreadingParameters
public List<ThreadingParametersIdentifiedType> getIdentifiedThreadingParameters()
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
setmethod 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
ThreadingParametersIdentifiedType
-
getEngine
public List<NettyHttpServerEngineConfigType> getEngine()
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
setmethod 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
NettyHttpServerEngineConfigType
-
setId
public void setId(String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
setBus
public void setBus(String value)
Sets the value of the bus property.
-
unsetBus
public void unsetBus()
-
getBus
public String getBus()
Gets the value of the bus property.
-
-