Fixing DurableConsumerCloseAndReconnectTest:

Added a getter to see if the destination is a pattern 

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@376858 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Hiram R. Chirino 2006-02-10 21:12:15 +00:00
parent 96adbc3fbb
commit 618d1d5a88
1 changed files with 4 additions and 0 deletions

View File

@ -344,4 +344,8 @@ abstract public class ActiveMQDestination extends JNDIBaseStorable implements Da
public void populateProperties(Properties props) {
props.setProperty("physicalName", getPhysicalName());
}
public boolean isPattern() {
return isPattern;
}
}