public Producer addProducer(Destination d, IMQConnection con, String uid, boolean acc)
throws BrokerException
{
if (acc)
checkAccessPermission(PacketType.ADD_PRODUCER, d, con);
ProducerHandler handler = (ProducerHandler)
pr.getHandler(PacketType.ADD_PRODUCER);
return handler.addProducer(d.getDestinationUID(), con, uid, false);
}