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

org.apache.cxf.transport.jms.ClientConfig 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 ClientConfig complex type. * *

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

 * <complexType name="ClientConfig">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibilityElement">
 *       <attribute name="clientReceiveTimeout" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedLong" default="60000" />
 *       <attribute name="messageTimeToLive" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedLong" default="0" />
 *       <attribute name="conduitSelectorPrefix" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="useConduitIdSelector" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" />
 *       <attribute name="enforceSpec" type="{http://cxf.apache.org/configuration/parameterized-types}ParameterizedBoolean" default="true" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClientConfig") public class ClientConfig extends TExtensibilityElementImpl { @XmlAttribute(name = "clientReceiveTimeout") protected Long clientReceiveTimeout; @XmlAttribute(name = "messageTimeToLive") protected Long messageTimeToLive; @XmlAttribute(name = "conduitSelectorPrefix") protected String conduitSelectorPrefix; @XmlAttribute(name = "useConduitIdSelector") protected Boolean useConduitIdSelector; @XmlAttribute(name = "enforceSpec") protected Boolean enforceSpec; /** * Gets the value of the conduitSelectorPrefix property. * * @return * possible object is * {@link String } * */ public String getConduitSelectorPrefix() { return conduitSelectorPrefix; } /** * Sets the value of the conduitSelectorPrefix property. * * @param value * allowed object is * {@link String } * */ public void setConduitSelectorPrefix(String value) { this.conduitSelectorPrefix = value; } public boolean isSetConduitSelectorPrefix() { return (this.conduitSelectorPrefix!= null); } /** * Sets the value of the clientReceiveTimeout property. * */ public void setClientReceiveTimeout(long value) { clientReceiveTimeout = value; } public void unsetClientReceiveTimeout() { clientReceiveTimeout = null; } public boolean isSetClientReceiveTimeout() { return (this.clientReceiveTimeout!= null); } /** * Gets the value of the clientReceiveTimeout property. * */ public long getClientReceiveTimeout() { if (null == clientReceiveTimeout) { return 60000L; } return clientReceiveTimeout; } /** * 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 useConduitIdSelector property. * */ public void setUseConduitIdSelector(boolean value) { useConduitIdSelector = value; } public void unsetUseConduitIdSelector() { useConduitIdSelector = null; } public boolean isSetUseConduitIdSelector() { return (this.useConduitIdSelector!= null); } /** * Gets the value of the useConduitIdSelector property. * */ public boolean isUseConduitIdSelector() { return useConduitIdSelector; } /** * Sets the value of the enforceSpec property. * */ public void setEnforceSpec(boolean value) { enforceSpec = value; } public void unsetEnforceSpec() { enforceSpec = null; } public boolean isSetEnforceSpec() { return (this.enforceSpec!= null); } /** * Gets the value of the enforceSpec property. * */ public boolean isEnforceSpec() { if (null == enforceSpec) { return true; } return enforceSpec; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy