Examples of IIMBotEntry


Examples of org.eclipse.ecf.presence.bot.IIMBotEntry

        String connectID = elements[i].getAttribute(CONNECT_ID_ATT);
        String password = elements[i].getAttribute(PASSWORD_ATT);
        List c = (List) imbotcommands.get(id);
        if (c == null)
          c = new ArrayList();
        IIMBotEntry bot = new IMBotEntry(id, name,
            containerFactoryName, connectID, password, c);
        imbots.put(id, bot);
      }
    }
View Full Code Here

Examples of org.eclipse.ecf.presence.bot.IIMBotEntry

  public Object start(IApplicationContext context) throws Exception {

    Map bots = getIMBotsFromExtensionRegistry();

    for (Iterator it = bots.values().iterator(); it.hasNext();) {
      IIMBotEntry entry = (IIMBotEntry) it.next();
      // Create default im bot
      IMBot bot = new IMBot(entry);
      // connect
      bot.connect();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.