public List<String> getQueues() throws QueueManagerException {
try {
Vector<Object> argList = new Vector<Object>();
return (List<String>) client.execute("resourcemgr.getQueues", argList);
}catch (Exception e) {
throw new QueueManagerException(e.getMessage(), e);
}
}