Package iqq.im.module

Examples of iqq.im.module.LoginModule


  public WebQQClient(String username, String password,
      QQNotifyListener notifyListener, QQActorDispatcher actorDispatcher) {
    this.modules = new HashMap<QQModule.Type, QQModule>();
    this.services = new HashMap<QQService.Type, QQService>();

    this.modules.put(QQModule.Type.LOGIN, new LoginModule());
    this.modules.put(QQModule.Type.PROC, new ProcModule());
    this.modules.put(QQModule.Type.USER, new UserModule());
    this.modules.put(QQModule.Type.BUDDY, new BuddyModule());
    this.modules.put(QQModule.Type.CATEGORY, new CategoryModule());
    this.modules.put(QQModule.Type.GROUP, new GroupModule());
View Full Code Here


   * <p>getCaptcha.</p>
   *
   * @param listener a {@link iqq.im.QQActionListener} object.
   */
  public void getCaptcha(QQActionListener listener) {
    LoginModule loginModule = (LoginModule) getModule(QQModule.Type.LOGIN);
    loginModule.getCaptcha(getAccount().getUin(), listener);
  }
View Full Code Here

   *
   * 刷新验证码
   */
  @Override
  public QQActionFuture freshVerify(QQNotifyEvent verifyEvent, QQActionListener listener) {
    LoginModule mod = getModule(QQModule.Type.LOGIN);
    return mod.getCaptcha(account.getUin(), listener);
  }
View Full Code Here

TOP

Related Classes of iqq.im.module.LoginModule

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.