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

org.apache.cxf.transports.http_jetty.configuration.ThreadingParametersType 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.08.14 at 04:30:32 PM 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;


/**
 * 

Java class for ThreadingParametersType complex type. * *

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

 * <complexType name="ThreadingParametersType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="minThreads" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedUShort" />
 *       <attribute name="maxThreads" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedUShort" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ThreadingParametersType") public class ThreadingParametersType { @XmlAttribute(name = "minThreads") protected Integer minThreads; @XmlAttribute(name = "maxThreads") protected Integer maxThreads; /** * Gets the value of the minThreads property. * * @return * possible object is * {@link Integer } * */ public Integer getMinThreads() { return minThreads; } /** * Sets the value of the minThreads property. * * @param value * allowed object is * {@link Integer } * */ public void setMinThreads(Integer value) { this.minThreads = value; } /** * Gets the value of the maxThreads property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxThreads() { return maxThreads; } /** * Sets the value of the maxThreads property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxThreads(Integer value) { this.maxThreads = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy