// As per spec. section 4.11
if (sessionType == TYPE_TOPIC_SESSION)
{
throw new IllegalStateException("Cannot create a temporary queue using a TopicSession");
}
JBossTemporaryQueue queue = new JBossTemporaryQueue(delegate);
delegate.addTemporaryDestination(queue);
return queue;
}