com.consol.citrus.model.config.jms.JmsEndpointModel Maven / Gradle / Ivy
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2021.01.21 um 09:11:05 AM CET
//
package com.consol.citrus.model.config.jms;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://www.citrusframework.org/schema/jms/config}jmsAdapterType">
* <attribute name="auto-start" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="durable-subscription" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="durable-subscriber-name" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "endpoint")
public class JmsEndpointModel
extends JmsAdapterType
{
@XmlAttribute(name = "auto-start")
protected Boolean autoStart;
@XmlAttribute(name = "durable-subscription")
protected Boolean durableSubscription;
@XmlAttribute(name = "durable-subscriber-name")
protected String durableSubscriberName;
/**
* Ruft den Wert der autoStart-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isAutoStart() {
return autoStart;
}
/**
* Legt den Wert der autoStart-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setAutoStart(Boolean value) {
this.autoStart = value;
}
/**
* Ruft den Wert der durableSubscription-Eigenschaft ab.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isDurableSubscription() {
return durableSubscription;
}
/**
* Legt den Wert der durableSubscription-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setDurableSubscription(Boolean value) {
this.durableSubscription = value;
}
/**
* Ruft den Wert der durableSubscriberName-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDurableSubscriberName() {
return durableSubscriberName;
}
/**
* Legt den Wert der durableSubscriberName-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDurableSubscriberName(String value) {
this.durableSubscriberName = value;
}
}