Package rath.msnm

Examples of rath.msnm.BuddyList


   */
  public List<Contact> getContacts() throws ContactsException {
    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();
View Full Code Here

TOP

Related Classes of rath.msnm.BuddyList

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.