* @since 1.1
*/
public Topic createTopic(String topicName) throws JMSException {
checkClosed();
if (topicName.startsWith(ActiveMQDestination.TEMP_DESTINATION_NAME_PREFIX)) {
return new ActiveMQTempTopic(topicName);
}
return new ActiveMQTopic(topicName);
}