/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/smackx/ |
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()) &&
|
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
|
/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/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 | 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...] |