org.apache.cxf.transport.jms
Class SessionPoolType

java.lang.Object
  extended by org.apache.cxf.wsdl.TExtensibilityElement
      extended by org.apache.cxf.wsdl.TExtensibilityElementImpl
          extended by org.apache.cxf.transport.jms.SessionPoolType
All Implemented Interfaces:
javax.wsdl.extensions.ExtensibilityElement

public class SessionPoolType
extends org.apache.cxf.wsdl.TExtensibilityElementImpl

JMS Session pool configuration policy

Java class for SessionPoolType complex type.

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

 <complexType name="SessionPoolType">
   <complexContent>
     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
       <attribute name="lowWaterMark" type="{http://www.w3.org/2001/XMLSchema}int" default="20" />
       <attribute name="highWaterMark" type="{http://www.w3.org/2001/XMLSchema}int" default="500" />
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.lang.Integer highWaterMark
           
protected  java.lang.Integer lowWaterMark
           
 
Fields inherited from class org.apache.cxf.wsdl.TExtensibilityElement
required
 
Constructor Summary
SessionPoolType()
           
 
Method Summary
 int getHighWaterMark()
          Gets the value of the highWaterMark property.
 int getLowWaterMark()
          Gets the value of the lowWaterMark property.
 boolean isSetHighWaterMark()
           
 boolean isSetLowWaterMark()
           
 void setHighWaterMark(int value)
          Sets the value of the highWaterMark property.
 void setLowWaterMark(int value)
          Sets the value of the lowWaterMark property.
 void unsetHighWaterMark()
           
 void unsetLowWaterMark()
           
 
Methods inherited from class org.apache.cxf.wsdl.TExtensibilityElementImpl
getElementType, getRequired, setElementType, setRequired
 
Methods inherited from class org.apache.cxf.wsdl.TExtensibilityElement
isRequired, isSetRequired, setRequired, unsetRequired
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

lowWaterMark

protected java.lang.Integer lowWaterMark

highWaterMark

protected java.lang.Integer highWaterMark
Constructor Detail

SessionPoolType

public SessionPoolType()
Method Detail

getLowWaterMark

public int getLowWaterMark()
Gets the value of the lowWaterMark property.

Returns:
possible object is Integer

setLowWaterMark

public void setLowWaterMark(int value)
Sets the value of the lowWaterMark property.

Parameters:
value - allowed object is Integer

isSetLowWaterMark

public boolean isSetLowWaterMark()

unsetLowWaterMark

public void unsetLowWaterMark()

getHighWaterMark

public int getHighWaterMark()
Gets the value of the highWaterMark property.

Returns:
possible object is Integer

setHighWaterMark

public void setHighWaterMark(int value)
Sets the value of the highWaterMark property.

Parameters:
value - allowed object is Integer

isSetHighWaterMark

public boolean isSetHighWaterMark()

unsetHighWaterMark

public void unsetHighWaterMark()


Apache CXF