Ejemplo n.º 1
0
 List<MethodSignature> methodSignatures(String agentId, String className, String methodName)
     throws Exception {
   ConnectedAgent connectedAgent = connectedAgents.get(agentId);
   if (connectedAgent == null) {
     throw new AgentNotConnectedException();
   }
   return connectedAgent.methodSignatures(className, methodName);
 }