1 18 package org.apache.activemq.systest; 19 20 import javax.jms.Destination ; 21 import javax.jms.JMSException ; 22 23 28 public interface DestinationFactory { 29 30 public Destination createDestination(String physicalName, int destinationType) throws JMSException ; 31 32 public static final int TOPIC = 1; 33 public static final int QUEUE = 2; 34 public static final int TEMPORARY_TOPIC = 3; 35 public static final int TEMPORARY_QUEUE = 4; 36 } 37 | Popular Tags |