Package org.eclipse.ecf.presence.roster

Examples of org.eclipse.ecf.presence.roster.RosterEntry


      try {
        userID = IDFactory.getDefault().createID(targetID.getNamespace(), userName);

        IUser child = new org.eclipse.ecf.core.user.User(userID,userName);
        IPresence presence = new Presence(IPresence.Type.AVAILABLE);
        entry = new RosterEntry(parent, child,presence);
        /*IPresence presence = presenceContainer.createPresence(userID.getName());
        entry.setPresenceState(presence);*/
        return entry;
      } catch (IDCreateException e) {
        e.printStackTrace();
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.presence.roster.RosterEntry

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.