org.apache.cxf.transport.jms.ServerConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-bundle-minimal Show documentation
Show all versions of cxf-bundle-minimal Show documentation
Apache CXF Minimal Bundle Jar
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.10-b140310.1920
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.10.30 at 01:23:40 PM 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" />
* <attribute name="serverReceiveTimeout" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedLong" />
* </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;
@XmlAttribute(name = "serverReceiveTimeout")
protected Long serverReceiveTimeout;
/**
* 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;
}
/**
* Sets the value of the serverReceiveTimeout property.
*
*/
public void setServerReceiveTimeout(long value) {
serverReceiveTimeout = value;
}
public void unsetServerReceiveTimeout() {
serverReceiveTimeout = null;
}
public boolean isSetServerReceiveTimeout() {
return (this.serverReceiveTimeout!= null);
}
/**
* Gets the value of the serverReceiveTimeout property.
*
*/
public long getServerReceiveTimeout() {
return serverReceiveTimeout;
}
}