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

org.apache.cxf.transport.jms.uri.JMSEndpointType 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.05.30 at 11:00:04 AM EDT 
//


package org.apache.cxf.transport.jms.uri;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 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="messageType" type="{http://cxf.apache.org/transports/jms/uri}messageType" default="byte" />
 *       <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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "JMSEndpointType") public class JMSEndpointType { @XmlAttribute(name = "endpointUri") protected String endpointUri; @XmlAttribute(name = "jmsVariant") protected String jmsVariant; @XmlAttribute(name = "destinationName") protected String destinationName; @XmlAttribute(name = "deliveryMode") protected DeliveryModeType deliveryMode; @XmlAttribute(name = "messageType") protected MessageType messageType; @XmlAttribute(name = "timeToLive") protected Long timeToLive; @XmlAttribute(name = "priority") protected Integer priority; @XmlAttribute(name = "replyToName") protected String replyToName; @XmlAttribute(name = "topicReplyToName") protected String topicReplyToName; @XmlAttribute(name = "jndiConnectionFactoryName") protected String jndiConnectionFactoryName; @XmlAttribute(name = "jndiInitialContextFactory") protected String jndiInitialContextFactory; @XmlAttribute(name = "jndiURL") protected String jndiURL; @XmlAttribute(name = "username") protected String username; @XmlAttribute(name = "password") protected String password; @XmlAttribute(name = "reconnectOnException") protected Boolean reconnectOnException; @XmlAttribute(name = "useJMS11") protected Boolean useJMS11; /** * Gets the value of the endpointUri property. * * @return * possible object is * {@link String } * */ public String getEndpointUri() { return endpointUri; } /** * Sets the value of the endpointUri property. * * @param value * allowed object is * {@link String } * */ public void setEndpointUri(String value) { this.endpointUri = value; } public boolean isSetEndpointUri() { return (this.endpointUri!= null); } /** * Gets the value of the jmsVariant property. * * @return * possible object is * {@link String } * */ public String getJmsVariant() { return jmsVariant; } /** * Sets the value of the jmsVariant property. * * @param value * allowed object is * {@link String } * */ public void setJmsVariant(String value) { this.jmsVariant = value; } public boolean isSetJmsVariant() { return (this.jmsVariant!= null); } /** * Gets the value of the destinationName property. * * @return * possible object is * {@link String } * */ public String getDestinationName() { return destinationName; } /** * Sets the value of the destinationName property. * * @param value * allowed object is * {@link String } * */ public void setDestinationName(String value) { this.destinationName = value; } public boolean isSetDestinationName() { return (this.destinationName!= null); } /** * Gets the value of the deliveryMode property. * * @return * possible object is * {@link DeliveryModeType } * */ public DeliveryModeType getDeliveryMode() { return deliveryMode; } /** * Sets the value of the deliveryMode property. * * @param value * allowed object is * {@link DeliveryModeType } * */ public void setDeliveryMode(DeliveryModeType value) { this.deliveryMode = value; } public boolean isSetDeliveryMode() { return (this.deliveryMode!= null); } /** * Gets the value of the messageType property. * * @return * possible object is * {@link MessageType } * */ public MessageType getMessageType() { if (messageType == null) { return MessageType.BYTE; } else { return messageType; } } /** * Sets the value of the messageType property. * * @param value * allowed object is * {@link MessageType } * */ public void setMessageType(MessageType value) { this.messageType = value; } public boolean isSetMessageType() { return (this.messageType!= null); } /** * Gets the value of the timeToLive property. * * @return * possible object is * {@link Long } * */ public long getTimeToLive() { return timeToLive; } /** * Sets the value of the timeToLive property. * * @param value * allowed object is * {@link Long } * */ public void setTimeToLive(long value) { this.timeToLive = value; } public boolean isSetTimeToLive() { return (this.timeToLive!= null); } public void unsetTimeToLive() { this.timeToLive = null; } /** * Gets the value of the priority property. * * @return * possible object is * {@link Integer } * */ public int getPriority() { return priority; } /** * Sets the value of the priority property. * * @param value * allowed object is * {@link Integer } * */ public void setPriority(int value) { this.priority = value; } public boolean isSetPriority() { return (this.priority!= null); } public void unsetPriority() { this.priority = null; } /** * Gets the value of the replyToName property. * * @return * possible object is * {@link String } * */ public String getReplyToName() { return replyToName; } /** * Sets the value of the replyToName property. * * @param value * allowed object is * {@link String } * */ public void setReplyToName(String value) { this.replyToName = value; } public boolean isSetReplyToName() { return (this.replyToName!= null); } /** * Gets the value of the topicReplyToName property. * * @return * possible object is * {@link String } * */ public String getTopicReplyToName() { return topicReplyToName; } /** * Sets the value of the topicReplyToName property. * * @param value * allowed object is * {@link String } * */ public void setTopicReplyToName(String value) { this.topicReplyToName = value; } public boolean isSetTopicReplyToName() { return (this.topicReplyToName!= null); } /** * Gets the value of the jndiConnectionFactoryName property. * * @return * possible object is * {@link String } * */ public String getJndiConnectionFactoryName() { return jndiConnectionFactoryName; } /** * Sets the value of the jndiConnectionFactoryName property. * * @param value * allowed object is * {@link String } * */ public void setJndiConnectionFactoryName(String value) { this.jndiConnectionFactoryName = value; } public boolean isSetJndiConnectionFactoryName() { return (this.jndiConnectionFactoryName!= null); } /** * Gets the value of the jndiInitialContextFactory property. * * @return * possible object is * {@link String } * */ public String getJndiInitialContextFactory() { return jndiInitialContextFactory; } /** * Sets the value of the jndiInitialContextFactory property. * * @param value * allowed object is * {@link String } * */ public void setJndiInitialContextFactory(String value) { this.jndiInitialContextFactory = value; } public boolean isSetJndiInitialContextFactory() { return (this.jndiInitialContextFactory!= null); } /** * Gets the value of the jndiURL property. * * @return * possible object is * {@link String } * */ public String getJndiURL() { return jndiURL; } /** * Sets the value of the jndiURL property. * * @param value * allowed object is * {@link String } * */ public void setJndiURL(String value) { this.jndiURL = value; } public boolean isSetJndiURL() { return (this.jndiURL!= null); } /** * Gets the value of the username property. * * @return * possible object is * {@link String } * */ public String getUsername() { return username; } /** * Sets the value of the username property. * * @param value * allowed object is * {@link String } * */ public void setUsername(String value) { this.username = value; } public boolean isSetUsername() { return (this.username!= null); } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } public boolean isSetPassword() { return (this.password!= null); } /** * Gets the value of the reconnectOnException property. * * @return * possible object is * {@link Boolean } * */ public boolean isReconnectOnException() { return reconnectOnException; } /** * Sets the value of the reconnectOnException property. * * @param value * allowed object is * {@link Boolean } * */ public void setReconnectOnException(boolean value) { this.reconnectOnException = value; } public boolean isSetReconnectOnException() { return (this.reconnectOnException!= null); } public void unsetReconnectOnException() { this.reconnectOnException = null; } /** * Gets the value of the useJMS11 property. * * @return * possible object is * {@link Boolean } * */ public boolean isUseJMS11() { return useJMS11; } /** * Sets the value of the useJMS11 property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseJMS11(boolean value) { this.useJMS11 = value; } public boolean isSetUseJMS11() { return (this.useJMS11 != null); } public void unsetUseJMS11() { this.useJMS11 = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy