Package net.kano.joustsim.oscar

Examples of net.kano.joustsim.oscar.DefaultAimSession


    long now = System.currentTimeMillis();
    if (wasConnected || now - _lastConnectionAttempt > (1000 * 60 * 15)) {
      _lastConnectionAttempt = now;

      Screenname sn = new Screenname(getScreenName());
      _aimSession = new DefaultAimSession(sn);
      AimConnectionProperties props = new AimConnectionProperties(sn, getPassword());
      AimConnection conn = _aimSession.openConnection(props);
      conn.addStateListener(new AimStateHandler());
      conn.connect();
    }
View Full Code Here

TOP

Related Classes of net.kano.joustsim.oscar.DefaultAimSession

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.