Package org.apache.openejb.jee.wls
Class MaxThreadsConstraint
- java.lang.Object
-
- org.apache.openejb.jee.wls.MaxThreadsConstraint
-
public class MaxThreadsConstraint extends Object
Java class for max-threads-constraint complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="max-threads-constraint"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <choice> <element name="count" type="{http://www.w3.org/2001/XMLSchema}integer"/> <element name="pool-name" type="{http://www.w3.org/2001/XMLSchema}string"/> </choice> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description MaxThreadsConstraint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigIntegergetCount()Gets the value of the count property.StringgetId()Gets the value of the id property.StringgetName()Gets the value of the name property.StringgetPoolName()Gets the value of the poolName property.voidsetCount(BigInteger value)Sets the value of the count property.voidsetId(String value)Sets the value of the id property.voidsetName(String value)Sets the value of the name property.voidsetPoolName(String value)Sets the value of the poolName property.
-
-
-
Field Detail
-
name
protected String name
-
count
protected BigInteger count
-
poolName
protected String poolName
-
id
protected String id
-
-
Method Detail
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getCount
public BigInteger getCount()
Gets the value of the count property.- Returns:
- possible object is
BigInteger
-
setCount
public void setCount(BigInteger value)
Sets the value of the count property.- Parameters:
value- allowed object isBigInteger
-
getPoolName
public String getPoolName()
Gets the value of the poolName property.- Returns:
- possible object is
String
-
setPoolName
public void setPoolName(String value)
Sets the value of the poolName property.- Parameters:
value- allowed object isString
-
-