Package com.almende.eve.agent

Examples of com.almende.eve.agent.AgentFactory


    System.out.println("testAsyncHTTP end...");
  }
 
  public void xmppConnect(@Name("username") String username,
      @Name("password") String password) throws Exception {
    AgentFactory factory = getAgentFactory();
   
    XmppService service = (XmppService) factory.getTransportService("xmpp");
    if (service != null) {
      service.connect(getId(), username, password);
    }
    else {
      throw new Exception("No XMPP service registered");
View Full Code Here


      throw new Exception("No XMPP service registered");
    }
  }
 
  public void xmppDisconnect() throws Exception {
    AgentFactory factory = getAgentFactory();
    XmppService service = (XmppService) factory.getTransportService("xmpp");
    if (service != null) {
      service.disconnect(getId());
    }
    else {
      throw new Exception("No XMPP service registered");
View Full Code Here

TOP

Related Classes of com.almende.eve.agent.AgentFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.