com.consol.citrus.model.testcase.jms.PurgeJmsQueuesModel 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.testcase.jms;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
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>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.citrusframework.org/schema/jms/testcase}description" minOccurs="0"/>
* <element name="queue" maxOccurs="unbounded">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* <attribute name="connection-factory" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="receive-timeout" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"description",
"queues"
})
@XmlRootElement(name = "purge-jms-queues")
public class PurgeJmsQueuesModel {
protected String description;
@XmlElement(name = "queue", required = true)
protected List queues;
@XmlAttribute(name = "connection-factory")
protected String connectionFactory;
@XmlAttribute(name = "receive-timeout")
protected Integer receiveTimeout;
/**
* Ruft den Wert der description-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Legt den Wert der description-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the queues property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the queues property.
*
*
* For example, to add a new item, do as follows:
*
* getQueues().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PurgeJmsQueuesModel.Queue }
*
*
*/
public List getQueues() {
if (queues == null) {
queues = new ArrayList();
}
return this.queues;
}
/**
* Ruft den Wert der connectionFactory-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getConnectionFactory() {
return connectionFactory;
}
/**
* Legt den Wert der connectionFactory-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setConnectionFactory(String value) {
this.connectionFactory = value;
}
/**
* Ruft den Wert der receiveTimeout-Eigenschaft ab.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getReceiveTimeout() {
return receiveTimeout;
}
/**
* Legt den Wert der receiveTimeout-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setReceiveTimeout(Integer value) {
this.receiveTimeout = value;
}
/**
* Java-Klasse für anonymous complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class Queue {
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "ref")
protected String ref;
/**
* Ruft den Wert der name-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Legt den Wert der name-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Ruft den Wert der ref-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Legt den Wert der ref-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRef(String value) {
this.ref = value;
}
}
}