* @return the unique identifier of the created destination.
*
* @throws JMSException
*/
private String createDestination(byte type, String name) throws JMSException {
SessCreateDestReply reply = (SessCreateDestReply) requestor.request(new SessCreateDestRequest(type, name));
return reply.getAgentId();
}