com.consol.citrus.endpoint.direct.DirectEndpointConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
package com.consol.citrus.endpoint.direct;
import com.consol.citrus.endpoint.AbstractEndpointConfiguration;
import com.consol.citrus.message.MessageQueue;
/**
* @author Christoph Deppisch
*/
public class DirectEndpointConfiguration extends AbstractEndpointConfiguration {
/** Destination queue */
private MessageQueue queue;
/** Destination queue name */
private String queueName;
/**
* Set the message queue.
* @param queue the queue to set
*/
public void setQueue(MessageQueue queue) {
this.queue = queue;
}
/**
* Sets the destination queue name.
* @param queueName the queueName to set
*/
public void setQueueName(String queueName) {
this.queueName = queueName;
}
/**
* Gets the queue.
* @return the queue
*/
public MessageQueue getQueue() {
return queue;
}
/**
* Gets the queueName.
* @return the queueName
*/
public String getQueueName() {
return queueName;
}
}