this.pubSub = new PubSubFilter(this);
this.p2p = new P2PFilter(this);
List dest = config.getDestinations();
for(Iterator it = dest.iterator(); it.hasNext();) {
Mom4jDestination d = (Mom4jDestination)it.next();
if(d.getType() == Mom4jDestination.QUEUE) {
this.createQueue(d.getName());
} else {
this.createTopic(d.getName());
}
}
Iterator it = this.durSubs.getSubscriptions();
while(it.hasNext()) {