org.apache.cxf.transport.jms
Class ServerBehaviorPolicyType

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

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

JMS configuration policy for CXF Server. These are used for configuring JMS port on CXF server side. Sets selection criteria for messages received by server

Java class for ServerBehaviorPolicyType complex type.

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

 <complexType name="ServerBehaviorPolicyType">
   <complexContent>
     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
       <attribute name="messageSelector" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="useMessageIDAsCorrelationID" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="transactional" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="durableSubscriberName" type="{http://www.w3.org/2001/XMLSchema}string" />
     </extension>
   </complexContent>
 </complexType>
 


Field Summary
protected  java.lang.String durableSubscriberName
           
protected  java.lang.String messageSelector
           
protected  java.lang.Boolean transactional
           
protected  java.lang.Boolean useMessageIDAsCorrelationID
           
 
Fields inherited from class org.apache.cxf.wsdl.TExtensibilityElement
required
 
Constructor Summary
ServerBehaviorPolicyType()
           
 
Method Summary
 java.lang.String getDurableSubscriberName()
          Gets the value of the durableSubscriberName property.
 java.lang.String getMessageSelector()
          Gets the value of the messageSelector property.
 boolean isSetDurableSubscriberName()
           
 boolean isSetMessageSelector()
           
 boolean isSetTransactional()
           
 boolean isSetUseMessageIDAsCorrelationID()
           
 boolean isTransactional()
          Gets the value of the transactional property.
 boolean isUseMessageIDAsCorrelationID()
          Gets the value of the useMessageIDAsCorrelationID property.
 void setDurableSubscriberName(java.lang.String value)
          Sets the value of the durableSubscriberName property.
 void setMessageSelector(java.lang.String value)
          Sets the value of the messageSelector property.
 void setTransactional(boolean value)
          Sets the value of the transactional property.
 void setUseMessageIDAsCorrelationID(boolean value)
          Sets the value of the useMessageIDAsCorrelationID property.
 void unsetTransactional()
           
 void unsetUseMessageIDAsCorrelationID()
           
 
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

messageSelector

protected java.lang.String messageSelector

useMessageIDAsCorrelationID

protected java.lang.Boolean useMessageIDAsCorrelationID

transactional

protected java.lang.Boolean transactional

durableSubscriberName

protected java.lang.String durableSubscriberName
Constructor Detail

ServerBehaviorPolicyType

public ServerBehaviorPolicyType()
Method Detail

getMessageSelector

public java.lang.String getMessageSelector()
Gets the value of the messageSelector property.

Returns:
possible object is String

setMessageSelector

public void setMessageSelector(java.lang.String value)
Sets the value of the messageSelector property.

Parameters:
value - allowed object is String

isSetMessageSelector

public boolean isSetMessageSelector()

isUseMessageIDAsCorrelationID

public boolean isUseMessageIDAsCorrelationID()
Gets the value of the useMessageIDAsCorrelationID property.

Returns:
possible object is Boolean

setUseMessageIDAsCorrelationID

public void setUseMessageIDAsCorrelationID(boolean value)
Sets the value of the useMessageIDAsCorrelationID property.

Parameters:
value - allowed object is Boolean

isSetUseMessageIDAsCorrelationID

public boolean isSetUseMessageIDAsCorrelationID()

unsetUseMessageIDAsCorrelationID

public void unsetUseMessageIDAsCorrelationID()

isTransactional

public boolean isTransactional()
Gets the value of the transactional property.

Returns:
possible object is Boolean

setTransactional

public void setTransactional(boolean value)
Sets the value of the transactional property.

Parameters:
value - allowed object is Boolean

isSetTransactional

public boolean isSetTransactional()

unsetTransactional

public void unsetTransactional()

getDurableSubscriberName

public java.lang.String getDurableSubscriberName()
Gets the value of the durableSubscriberName property.

Returns:
possible object is String

setDurableSubscriberName

public void setDurableSubscriberName(java.lang.String value)
Sets the value of the durableSubscriberName property.

Parameters:
value - allowed object is String

isSetDurableSubscriberName

public boolean isSetDurableSubscriberName()


Apache CXF