public interface ConsumeDestination
Represents a destination such as a directory or JMS Queue in the Framework. May optionally have an expression which may be used to filter the messages to consume.
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getDeliveryThreadName()
 Returns the name to use for the delivery thread. | 
| java.lang.String | getDestination()
 Returns the name of the destination. | 
| java.lang.String | getFilterExpression()
 Returns the filter expression to use. | 
| java.lang.String | getUniqueId()
 Returns the unique ID. | 
| void | setDestination(java.lang.String destination)
 Sets the name of the destination. | 
| void | setFilterExpression(java.lang.String filter)
 Sets the filter expression to use. | 
java.lang.String getDestination()
Returns the name of the destination.
void setDestination(java.lang.String destination)
Sets the name of the destination.
destination - the name of the destinationjava.lang.String getFilterExpression()
Returns the filter expression to use.
void setFilterExpression(java.lang.String filter)
Sets the filter expression to use.
filter - the filter expression to usejava.lang.String getUniqueId()
 Returns the unique ID.  This method is implemented in 
 ConsumeDestinationImp and is final.
 
java.lang.String getDeliveryThreadName()
 Returns the name to use for the delivery thread.  This method needs to be
 moved to Workflow or AdaptrisMessageConsumer.