137138139140141142143144145146147
Destination t = new GroupTopic(name); topics.put(name, t); return t; } if (queueInfo.contains(name)) { Destination q = new GroupQueue(name); queues.put(name, q); return q; } throw new NameNotFoundException(name+" not found"); }