HomeSort by relevance Sort by last modified time
    Searched refs:roster (Results 1 - 13 of 13) sorted by null

  /external/smack/src/org/jivesoftware/smackx/pubsub/
AccessModel.java 33 /** Anyone in the specified roster group(s) may subscribe and retrieve items */
34 roster, enum constant in enum:AccessModel
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
rostermodule_unittest.cc 207 virtual void ContactChanged(XmppRosterModule* roster,
213 WriteContact(ss_, roster->GetRosterContact(index));
218 //! These contacts may have been added in response to the original roster
219 //! request or due to a "roster push" from the server.
220 virtual void ContactsAdded(XmppRosterModule* roster,
225 WriteContact(ss_, roster->GetRosterContact(index+i));
255 //! roster module
282 talk_base::scoped_ptr<XmppRosterModule> roster(XmppRosterModule::Create());
283 roster->set_roster_handler(&roster_handler);
285 // Configure the roster modul
    [all...]
rostermodule.h 54 //! These are the valid subscription states in a roster contact. This
162 //! Create a new roster contact
163 //! This is typically only used when doing a roster update/add
170 //! Sets the jid for the roster contact update
180 //! This is never settable and will be ignored when generating a roster
199 //! The raw xml for this roster contact
216 virtual void SubscriptionRequest(XmppRosterModule* roster,
222 virtual void SubscriptionError(XmppRosterModule* roster,
226 virtual void RosterError(XmppRosterModule* roster,
232 virtual void IncomingPresenceChanged(XmppRosterModule* roster,
    [all...]
  /external/smack/src/org/jivesoftware/smack/
BOSHConnection.java 35 import org.jivesoftware.smack.Roster;
115 * The roster maybe also called buddy list holds the list of the users contacts.
117 private Roster roster = null; field in class:BOSHConnection
242 public Roster getRoster() {
243 if (roster == null) {
247 roster.reload();
249 // If this is the first time the user has asked for the roster after calling
250 // login, we want to wait for the server to send back the user's roster.
252 // roster operations are asynchronous, although they'll still have to liste
    [all...]
RosterEntry.java 29 * Each user in your roster is represented by a roster entry, which contains the user's
40 final private Roster roster; field in class:RosterEntry
44 * Creates a new roster entry.
53 RosterPacket.ItemStatus status, Roster roster, Connection connection) {
58 this.roster = roster;
111 * Returns an unmodifiable collection of the roster groups that this entry belongs to
    [all...]
XMPPConnection.java 95 Roster roster = null; field in class:XMPPConnection
254 // Create the roster if it is not a reconnection or roster already created by getRoster()
255 if (this.roster == null) {
257 this.roster = new Roster(this);
260 this.roster = new Roster(this,rosterStorage);
264 this.roster.reload()
    [all...]
  /external/smack/src/org/jivesoftware/smackx/
GatewayManager.java 10 import org.jivesoftware.smack.Roster;
43 private Roster roster; field in class:GatewayManager
56 this.roster = connection.getRoster();
102 * Loads all getways which are in the users roster, but are not supplied by the
107 if(roster!=null){
108 for(RosterEntry entry : roster.getEntries()){
149 * Returns a list of gateways the user has in his roster, but which are offered by
Gateway.java 11 import org.jivesoftware.smack.Roster;
35 private Roster roster; field in class:Gateway
43 this.roster = connection.getRoster();
232 roster.createEntry(entityJID, getIdentity().getName(), new String[]{});
273 RosterEntry gatewayEntry = roster.getEntry(entityJID);
274 roster.removeEntry(gatewayEntry);
321 roster.contains(presence.getFrom()) &&
RosterExchangeManager.java 28 import org.jivesoftware.smack.Roster;
40 * Manages Roster exchanges. A RosterExchangeManager provides a high level access to send
41 * rosters, roster groups and roster entries to XMPP clients. It also provides an easy way
53 private PacketFilter packetFilter = new PacketExtensionFilter("x", "jabber:x:roster");
57 * Creates a new roster exchange manager.
67 * Adds a listener to roster exchanges. The listener will be fired anytime roster entries
70 * @param rosterExchangeListener a roster exchange listener.
81 * Removes a listener from roster exchanges. The listener will be fired anytime roster
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
RosterExchange.java 23 import org.jivesoftware.smack.Roster;
35 * Represents XMPP Roster Item Exchange packets.<p>
37 * The 'jabber:x:roster' namespace (which is not to be confused with the 'jabber:iq:roster'
38 * namespace) is used to send roster items from one client to another. A roster item is sent by
39 * adding to the &lt;message/&gt; element an &lt;x/&gt; child scoped by the 'jabber:x:roster' namespace. This
40 * &lt;x/&gt; element may contain one or more &lt;item/&gt; children (one for each roster item to be sent).<p>
49 * into one or more roster groups.
58 * Creates a new empty roster exchange package
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java.orig 305 else if (elementName.equals("query") && namespace.equals("jabber:iq:roster")) {
413 RosterPacket roster = new RosterPacket();
420 roster.setVersion(version);
447 roster.addRosterItem(item);
454 return roster;
    [all...]
PacketParserUtils.java 304 else if (elementName.equals("query") && namespace.equals("jabber:iq:roster")) {
412 RosterPacket roster = new RosterPacket(); local
419 roster.setVersion(version);
446 roster.addRosterItem(item);
453 return roster;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
call_main.cc 258 DEFINE_bool(roster, false,
259 "Enable roster messages printed in console.");

Completed in 397 milliseconds