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

org.apache.cxf.transport.jms.ServerBehaviorPolicyType Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.02.05 at 01:57:18 PM EST 
//


package org.apache.cxf.transport.jms;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import 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="durableSubscriberName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="messageSelector" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="transactional" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *       <attribute name="useMessageIDAsCorrelationID" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServerBehaviorPolicyType") public class ServerBehaviorPolicyType extends TExtensibilityElementImpl { @XmlAttribute protected String durableSubscriberName; @XmlAttribute protected String messageSelector; @XmlAttribute protected Boolean transactional; @XmlAttribute protected Boolean useMessageIDAsCorrelationID; /** * Gets the value of the durableSubscriberName property. * * @return * possible object is * {@link String } * */ public String getDurableSubscriberName() { return durableSubscriberName; } /** * Sets the value of the durableSubscriberName property. * * @param value * allowed object is * {@link String } * */ public void setDurableSubscriberName(String value) { this.durableSubscriberName = value; } public boolean isSetDurableSubscriberName() { return (this.durableSubscriberName!= null); } /** * Gets the value of the messageSelector property. * * @return * possible object is * {@link String } * */ public String getMessageSelector() { return messageSelector; } /** * Sets the value of the messageSelector property. * * @param value * allowed object is * {@link String } * */ public void setMessageSelector(String value) { this.messageSelector = value; } public boolean isSetMessageSelector() { return (this.messageSelector!= null); } /** * Gets the value of the transactional property. * * @return * possible object is * {@link Boolean } * */ public boolean isTransactional() { if (transactional == null) { return false; } else { return transactional; } } /** * Sets the value of the transactional property. * * @param value * allowed object is * {@link Boolean } * */ public void setTransactional(boolean value) { this.transactional = value; } public boolean isSetTransactional() { return (this.transactional!= null); } public void unsetTransactional() { this.transactional = null; } /** * Gets the value of the useMessageIDAsCorrelationID property. * * @return * possible object is * {@link Boolean } * */ public boolean isUseMessageIDAsCorrelationID() { if (useMessageIDAsCorrelationID == null) { return false; } else { return useMessageIDAsCorrelationID; } } /** * Sets the value of the useMessageIDAsCorrelationID property. * * @param value * allowed object is * {@link Boolean } * */ public void setUseMessageIDAsCorrelationID(boolean value) { this.useMessageIDAsCorrelationID = value; } public boolean isSetUseMessageIDAsCorrelationID() { return (this.useMessageIDAsCorrelationID!= null); } public void unsetUseMessageIDAsCorrelationID() { this.useMessageIDAsCorrelationID = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy