Package com.anzsoft.client.XMPP.mandioca

Examples of com.anzsoft.client.XMPP.mandioca.RosterTask


    userAddDlg.show();
  }
 
  public void removeUser(final XmppID id)
  {
    RosterTask task = new RosterTask(session);
    task.remove(id);
  }
View Full Code Here


    infoDlg.getInfo(id);
  }
 
  public void renameUser(final XmppID id,final String newName)
  {
    RosterTask task = new RosterTask(session);
    task.set(id, newName, null);
  }
View Full Code Here

    task.set(id, newName, null);
  }
 
  public void changeGroup(final XmppID id,final String name,final String newGroup)
  {
    RosterTask task = new RosterTask(session);
    List<String> groups = new ArrayList<String>();
    groups.add(newGroup);
    task.set(id,name, groups);
   
  }
View Full Code Here

TOP

Related Classes of com.anzsoft.client.XMPP.mandioca.RosterTask

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.