Examples of MsnFriend


Examples of rath.msnm.entity.MsnFriend

    try {
      login();
      List<Contact> contacts = new ArrayList<Contact>();
      BuddyList list = msn.getBuddyGroup().getAllowList();
      for (Iterator iter = list.iterator(); iter.hasNext();) {
        MsnFriend friend = (MsnFriend) iter.next();
        contacts.add(new Contact(new String(friend.getFriendlyName()
            .getBytes(), "UTF-8"), friend.getLoginName()));
      }
      logout();
      return contacts;
    } catch (Exception e) {
      throw new ContactsException("msn protocol has changed", e);
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.