Package com.belerweb.social.qq.mail.bean

Examples of com.belerweb.social.qq.mail.bean.Group


   * 按分组获取所有QQ邮箱中的联系人,包括QQ联系人
   */
  public List<Group> get() throws SocialException {
    List<Group> result = new ArrayList<Group>();
    login();
    Group group = new Group();
    group.setType("normal");
    group.setName("全部");
    group.setOwner(email);
    List<Group> groups = get(group);
    result.add(group);
    for (Group group2 : groups) {
      get(group2);
      group2.setOwner(email);
View Full Code Here

TOP

Related Classes of com.belerweb.social.qq.mail.bean.Group

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.