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

org.apache.cxf.transport.jms.ServerConfig 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;

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;


/**
 * 

Java class for ServerConfig complex type. * *

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

 * <complexType name="ServerConfig">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
 *       <attribute name="messageTimeToLive" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedLong" default="0" />
 *       <attribute name="durableSubscriptionClientId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServerConfig") public class ServerConfig extends TExtensibilityElementImpl { @XmlAttribute(name = "messageTimeToLive") protected Long messageTimeToLive; @XmlAttribute(name = "durableSubscriptionClientId") protected String durableSubscriptionClientId; /** * Gets the value of the durableSubscriptionClientId property. * * @return * possible object is * {@link String } * */ public String getDurableSubscriptionClientId() { return durableSubscriptionClientId; } /** * Sets the value of the durableSubscriptionClientId property. * * @param value * allowed object is * {@link String } * */ public void setDurableSubscriptionClientId(String value) { this.durableSubscriptionClientId = value; } public boolean isSetDurableSubscriptionClientId() { return (this.durableSubscriptionClientId!= null); } /** * Sets the value of the messageTimeToLive property. * */ public void setMessageTimeToLive(long value) { messageTimeToLive = value; } public void unsetMessageTimeToLive() { messageTimeToLive = null; } public boolean isSetMessageTimeToLive() { return (this.messageTimeToLive!= null); } /** * Gets the value of the messageTimeToLive property. * */ public long getMessageTimeToLive() { if (null == messageTimeToLive) { return 0L; } return messageTimeToLive; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy