public void resumedAgent(AID name) throws IMTPException, NotFoundException {
try {
GenericCommand cmd = new GenericCommand(H_RESUMEDAGENT, AgentManagementSlice.NAME, null);
cmd.addParam(name);
Node n = getNode();
Object result = n.accept(cmd);
if((result != null) && (result instanceof Throwable)) {
if(result instanceof IMTPException) {
throw (IMTPException)result;
}
else if(result instanceof NotFoundException) {