HomeSort by relevance Sort by last modified time
    Searched refs:roster (Results 1 - 11 of 11) 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/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/webkit/Source/WebCore/platform/graphics/haiku/
ImageBufferHaiku.cpp 328 BTranslatorRoster* roster = BTranslatorRoster::Default(); local
331 roster->GetAllTranslators(&translators, &translatorCount);
336 roster->GetInputFormats(translators[i], &inputFormats, &formatCount);
348 roster->GetOutputFormats(translators[i], &outputFormats, &formatCount);
364 if (roster->Translate(&bitmapStream, 0, 0, &translatedStream, translatorType,
  /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...]

Completed in 632 milliseconds