Searched defs:roster (Results 1 - 9 of 9) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DAccessModel.java33 /** 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/packet/
H A DRosterExchange.java37 * 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 <message/> element an <x/> 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.
66 * Creates a new roster exchange package with the entries specified in roster
70 RosterExchange(Roster roster) argument
[all...]
/external/smack/src/org/jivesoftware/smack/
H A DRosterEntry.java29 * 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.
117 // Loop through all roster groups and find the ones that contain this
119 for (RosterGroup group: roster
52 RosterEntry(String user, String name, RosterPacket.ItemType type, RosterPacket.ItemStatus status, Roster roster, Connection connection) argument
[all...]
H A DBOSHConnection.java115 * The roster maybe also called buddy list holds the list of the users contacts.
117 private Roster roster = null; field in class:BOSHConnection
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 listen
253 // for changes to the roster. Note: because of this waiting logic, internal
255 // need to access the roster object directly.
256 if (!roster
[all...]
H A DXMPPConnection.java95 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();
332 // if connection is authenticated the roster is already set by login()
335 if (roster == null) {
336 roster
[all...]
/external/smack/src/org/jivesoftware/smackx/
H A DGatewayManager.java43 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
H A DRosterExchangeManager.java41 * 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
84 * @param rosterExchangeListener a roster exchang
99 send(Roster roster, String targetUserID) argument
[all...]
H A DGateway.java35 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()) &&
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Drostermodule_unittest.cc207 virtual void ContactChanged(XmppRosterModule* roster, argument
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, argument
225 WriteContact(ss_, roster->GetRosterContact(index+i));
255 //! roster module
282 rtc::scoped_ptr<XmppRosterModule> roster(XmppRosterModule::Create());
283 roster->set_roster_handler(&roster_handler);
285 // Configure the roster modul
[all...]

Completed in 207 milliseconds