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: 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;


/**
 * 

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="durableSubscriptionClientId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="messageTimeToLive" type="{http://www.w3.org/2001/XMLSchema}long" default="0" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServerConfig") public class ServerConfig extends TExtensibilityElementImpl { @XmlAttribute protected String durableSubscriptionClientId; @XmlAttribute protected Long messageTimeToLive; /** * 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); } /** * Gets the value of the messageTimeToLive property. * * @return * possible object is * {@link Long } * */ public long getMessageTimeToLive() { if (messageTimeToLive == null) { return 0L; } else { return messageTimeToLive; } } /** * Sets the value of the messageTimeToLive property. * * @param value * allowed object is * {@link Long } * */ public void setMessageTimeToLive(long value) { this.messageTimeToLive = value; } public boolean isSetMessageTimeToLive() { return (this.messageTimeToLive!= null); } public void unsetMessageTimeToLive() { this.messageTimeToLive = null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy