Apache CXF API

org.apache.cxf.transport.jms.uri
Class JMSEndpointType

java.lang.Object
  extended by org.apache.cxf.transport.jms.uri.JMSEndpointType
Direct Known Subclasses:
JMSEndpoint

public class JMSEndpointType
extends Object

JMS header properties.

Java class for JMSEndpointType complex type.

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

 <complexType name="JMSEndpointType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="endpointUri" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="jmsVariant" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="destinationName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="deliveryMode" type="{http://cxf.apache.org/transports/jms/uri}deliveryModeType" />
       <attribute name="timeToLive" type="{http://www.w3.org/2001/XMLSchema}long" />
       <attribute name="priority" type="{http://cxf.apache.org/transports/jms/uri}priorityType" />
       <attribute name="replyToName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="topicReplyToName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="jndiConnectionFactoryName" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="jndiInitialContextFactory" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="jndiURL" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="username" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="password" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="reconnectOnException" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="useJMS11" type="{http://www.w3.org/2001/XMLSchema}boolean" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  DeliveryModeType deliveryMode
           
protected  String destinationName
           
protected  String endpointUri
           
protected  String jmsVariant
           
protected  String jndiConnectionFactoryName
           
protected  String jndiInitialContextFactory
           
protected  String jndiURL
           
protected  String password
           
protected  Integer priority
           
protected  Boolean reconnectOnException
           
protected  String replyToName
           
protected  Long timeToLive
           
protected  String topicReplyToName
           
protected  Boolean useJMS11
           
protected  String username
           
 
Constructor Summary
JMSEndpointType()
           
 
Method Summary
 DeliveryModeType getDeliveryMode()
          Gets the value of the deliveryMode property.
 String getDestinationName()
          Gets the value of the destinationName property.
 String getEndpointUri()
          Gets the value of the endpointUri property.
 String getJmsVariant()
          Gets the value of the jmsVariant property.
 String getJndiConnectionFactoryName()
          Gets the value of the jndiConnectionFactoryName property.
 String getJndiInitialContextFactory()
          Gets the value of the jndiInitialContextFactory property.
 String getJndiURL()
          Gets the value of the jndiURL property.
 String getPassword()
          Gets the value of the password property.
 int getPriority()
          Gets the value of the priority property.
 String getReplyToName()
          Gets the value of the replyToName property.
 long getTimeToLive()
          Gets the value of the timeToLive property.
 String getTopicReplyToName()
          Gets the value of the topicReplyToName property.
 String getUsername()
          Gets the value of the username property.
 boolean isReconnectOnException()
          Gets the value of the reconnectOnException property.
 boolean isSetDeliveryMode()
           
 boolean isSetDestinationName()
           
 boolean isSetEndpointUri()
           
 boolean isSetJmsVariant()
           
 boolean isSetJndiConnectionFactoryName()
           
 boolean isSetJndiInitialContextFactory()
           
 boolean isSetJndiURL()
           
 boolean isSetPassword()
           
 boolean isSetPriority()
           
 boolean isSetReconnectOnException()
           
 boolean isSetReplyToName()
           
 boolean isSetTimeToLive()
           
 boolean isSetTopicReplyToName()
           
 boolean isSetUseJMS11()
           
 boolean isSetUsername()
           
 boolean isUseJMS11()
          Gets the value of the useJMS11 property.
 void setDeliveryMode(DeliveryModeType value)
          Sets the value of the deliveryMode property.
 void setDestinationName(String value)
          Sets the value of the destinationName property.
 void setEndpointUri(String value)
          Sets the value of the endpointUri property.
 void setJmsVariant(String value)
          Sets the value of the jmsVariant property.
 void setJndiConnectionFactoryName(String value)
          Sets the value of the jndiConnectionFactoryName property.
 void setJndiInitialContextFactory(String value)
          Sets the value of the jndiInitialContextFactory property.
 void setJndiURL(String value)
          Sets the value of the jndiURL property.
 void setPassword(String value)
          Sets the value of the password property.
 void setPriority(int value)
          Sets the value of the priority property.
 void setReconnectOnException(boolean value)
          Sets the value of the reconnectOnException property.
 void setReplyToName(String value)
          Sets the value of the replyToName property.
 void setTimeToLive(long value)
          Sets the value of the timeToLive property.
 void setTopicReplyToName(String value)
          Sets the value of the topicReplyToName property.
 void setUseJMS11(boolean value)
          Sets the value of the useJMS11 property.
 void setUsername(String value)
          Sets the value of the username property.
 void unsetPriority()
           
 void unsetReconnectOnException()
           
 void unsetTimeToLive()
           
 void unsetUseJMS11()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

endpointUri

protected String endpointUri

jmsVariant

protected String jmsVariant

destinationName

protected String destinationName

deliveryMode

protected DeliveryModeType deliveryMode

timeToLive

protected Long timeToLive

priority

protected Integer priority

replyToName

protected String replyToName

topicReplyToName

protected String topicReplyToName

jndiConnectionFactoryName

protected String jndiConnectionFactoryName

jndiInitialContextFactory

protected String jndiInitialContextFactory

jndiURL

protected String jndiURL

username

protected String username

password

protected String password

reconnectOnException

protected Boolean reconnectOnException

useJMS11

protected Boolean useJMS11
Constructor Detail

JMSEndpointType

public JMSEndpointType()
Method Detail

getEndpointUri

public String getEndpointUri()
Gets the value of the endpointUri property.

Returns:
possible object is String

setEndpointUri

public void setEndpointUri(String value)
Sets the value of the endpointUri property.

Parameters:
value - allowed object is String

isSetEndpointUri

public boolean isSetEndpointUri()

getJmsVariant

public String getJmsVariant()
Gets the value of the jmsVariant property.

Returns:
possible object is String

setJmsVariant

public void setJmsVariant(String value)
Sets the value of the jmsVariant property.

Parameters:
value - allowed object is String

isSetJmsVariant

public boolean isSetJmsVariant()

getDestinationName

public String getDestinationName()
Gets the value of the destinationName property.

Returns:
possible object is String

setDestinationName

public void setDestinationName(String value)
Sets the value of the destinationName property.

Parameters:
value - allowed object is String

isSetDestinationName

public boolean isSetDestinationName()

getDeliveryMode

public DeliveryModeType getDeliveryMode()
Gets the value of the deliveryMode property.

Returns:
possible object is DeliveryModeType

setDeliveryMode

public void setDeliveryMode(DeliveryModeType value)
Sets the value of the deliveryMode property.

Parameters:
value - allowed object is DeliveryModeType

isSetDeliveryMode

public boolean isSetDeliveryMode()

getTimeToLive

public long getTimeToLive()
Gets the value of the timeToLive property.

Returns:
possible object is Long

setTimeToLive

public void setTimeToLive(long value)
Sets the value of the timeToLive property.

Parameters:
value - allowed object is Long

isSetTimeToLive

public boolean isSetTimeToLive()

unsetTimeToLive

public void unsetTimeToLive()

getPriority

public int getPriority()
Gets the value of the priority property.

Returns:
possible object is Integer

setPriority

public void setPriority(int value)
Sets the value of the priority property.

Parameters:
value - allowed object is Integer

isSetPriority

public boolean isSetPriority()

unsetPriority

public void unsetPriority()

getReplyToName

public String getReplyToName()
Gets the value of the replyToName property.

Returns:
possible object is String

setReplyToName

public void setReplyToName(String value)
Sets the value of the replyToName property.

Parameters:
value - allowed object is String

isSetReplyToName

public boolean isSetReplyToName()

getTopicReplyToName

public String getTopicReplyToName()
Gets the value of the topicReplyToName property.

Returns:
possible object is String

setTopicReplyToName

public void setTopicReplyToName(String value)
Sets the value of the topicReplyToName property.

Parameters:
value - allowed object is String

isSetTopicReplyToName

public boolean isSetTopicReplyToName()

getJndiConnectionFactoryName

public String getJndiConnectionFactoryName()
Gets the value of the jndiConnectionFactoryName property.

Returns:
possible object is String

setJndiConnectionFactoryName

public void setJndiConnectionFactoryName(String value)
Sets the value of the jndiConnectionFactoryName property.

Parameters:
value - allowed object is String

isSetJndiConnectionFactoryName

public boolean isSetJndiConnectionFactoryName()

getJndiInitialContextFactory

public String getJndiInitialContextFactory()
Gets the value of the jndiInitialContextFactory property.

Returns:
possible object is String

setJndiInitialContextFactory

public void setJndiInitialContextFactory(String value)
Sets the value of the jndiInitialContextFactory property.

Parameters:
value - allowed object is String

isSetJndiInitialContextFactory

public boolean isSetJndiInitialContextFactory()

getJndiURL

public String getJndiURL()
Gets the value of the jndiURL property.

Returns:
possible object is String

setJndiURL

public void setJndiURL(String value)
Sets the value of the jndiURL property.

Parameters:
value - allowed object is String

isSetJndiURL

public boolean isSetJndiURL()

getUsername

public String getUsername()
Gets the value of the username property.

Returns:
possible object is String

setUsername

public void setUsername(String value)
Sets the value of the username property.

Parameters:
value - allowed object is String

isSetUsername

public boolean isSetUsername()

getPassword

public String getPassword()
Gets the value of the password property.

Returns:
possible object is String

setPassword

public void setPassword(String value)
Sets the value of the password property.

Parameters:
value - allowed object is String

isSetPassword

public boolean isSetPassword()

isReconnectOnException

public boolean isReconnectOnException()
Gets the value of the reconnectOnException property.

Returns:
possible object is Boolean

setReconnectOnException

public void setReconnectOnException(boolean value)
Sets the value of the reconnectOnException property.

Parameters:
value - allowed object is Boolean

isSetReconnectOnException

public boolean isSetReconnectOnException()

unsetReconnectOnException

public void unsetReconnectOnException()

isUseJMS11

public boolean isUseJMS11()
Gets the value of the useJMS11 property.

Returns:
possible object is Boolean

setUseJMS11

public void setUseJMS11(boolean value)
Sets the value of the useJMS11 property.

Parameters:
value - allowed object is Boolean

isSetUseJMS11

public boolean isSetUseJMS11()

unsetUseJMS11

public void unsetUseJMS11()

Apache CXF API

Apache CXF