Package org.jivesoftware.smack

Examples of org.jivesoftware.smack.Roster


    final Roster r = getRoster();
    r.createEntry(user, name, groups);
  }

  public void sendRosterRemove(String user) throws XMPPException, IOException {
    final Roster r = getRoster();
    final RosterEntry re = r.getEntry(user);
    r.removeEntry(re);
  }
View Full Code Here

TOP

Related Classes of org.jivesoftware.smack.Roster

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.