Class PurgeJmsQueuesModel
- java.lang.Object
-
- com.consol.citrus.model.testcase.jms.PurgeJmsQueuesModel
-
public class PurgeJmsQueuesModel extends Object
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>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PurgeJmsQueuesModel.Queue
Java-Klasse für anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected String
connectionFactory
protected String
description
protected List<PurgeJmsQueuesModel.Queue>
queues
protected Integer
receiveTimeout
-
Constructor Summary
Constructors Constructor Description PurgeJmsQueuesModel()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getConnectionFactory()
Ruft den Wert der connectionFactory-Eigenschaft ab.String
getDescription()
Ruft den Wert der description-Eigenschaft ab.List<PurgeJmsQueuesModel.Queue>
getQueues()
Gets the value of the queues property.Integer
getReceiveTimeout()
Ruft den Wert der receiveTimeout-Eigenschaft ab.void
setConnectionFactory(String value)
Legt den Wert der connectionFactory-Eigenschaft fest.void
setDescription(String value)
Legt den Wert der description-Eigenschaft fest.void
setReceiveTimeout(Integer value)
Legt den Wert der receiveTimeout-Eigenschaft fest.
-
-
-
Field Detail
-
description
protected String description
-
queues
protected List<PurgeJmsQueuesModel.Queue> queues
-
connectionFactory
protected String connectionFactory
-
receiveTimeout
protected Integer receiveTimeout
-
-
Method Detail
-
getDescription
public String getDescription()
Ruft den Wert der description-Eigenschaft ab.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Legt den Wert der description-Eigenschaft fest.- Parameters:
value
- allowed object isString
-
getQueues
public List<PurgeJmsQueuesModel.Queue> getQueues()
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
PurgeJmsQueuesModel.Queue
-
getConnectionFactory
public String getConnectionFactory()
Ruft den Wert der connectionFactory-Eigenschaft ab.- Returns:
- possible object is
String
-
setConnectionFactory
public void setConnectionFactory(String value)
Legt den Wert der connectionFactory-Eigenschaft fest.- Parameters:
value
- allowed object isString
-
getReceiveTimeout
public Integer getReceiveTimeout()
Ruft den Wert der receiveTimeout-Eigenschaft ab.- Returns:
- possible object is
Integer
-
-