Ejemplo n.º 1
0
 Capabilities capabilities(String agentId) throws Exception {
   ConnectedAgent connectedAgent = connectedAgents.get(agentId);
   if (connectedAgent == null) {
     throw new AgentNotConnectedException();
   }
   return connectedAgent.capabilities();
 }