HomeSort by relevance Sort by last modified time
    Searched defs:affiliation (Results 1 - 6 of 6) sorted by null

  /external/smack/src/org/jivesoftware/smackx/muc/
Affiliate.java 27 * Represents an affiliation of a user to a given room. The affiliate's information will always have
28 * the bare jid of the real user and its affiliation. If the affiliate is an occupant of the room
36 private String affiliation; field in class:Affiliate
45 this.affiliation = item.getAffiliation();
53 this.affiliation = item.getAffiliation();
68 * Returns the affiliation of the afffiliated user. Possible affiliations are: "owner", "admin",
71 * @return the affiliation of the afffiliated user.
74 return affiliation;
Occupant.java 30 * the affiliation and role of the occupant in the room. The full JID and nickname are optional.
36 private String affiliation; field in class:Occupant
45 this.affiliation = item.getAffiliation();
56 this.affiliation = item.getAffiliation();
75 * Returns the affiliation of the occupant. Possible affiliations are: "owner", "admin",
78 * @return the affiliation of the occupant.
81 return affiliation;
115 result = affiliation.hashCode();
  /external/chromium_org/chrome/browser/chromeos/policy/
user_cloud_policy_manager_factory_chromeos.cc 121 UserAffiliation affiliation = connector->GetUserAffiliation(username); local
122 const bool is_managed_user = affiliation == USER_AFFILIATION_MANAGED;
164 affiliation);
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCAdmin.java 42 * Returns an Iterator for item childs that holds information about roles, affiliation,
45 * @return an Iterator for item childs that holds information about roles, affiliation,
55 * Adds an item child that holds information about roles, affiliation, jids and nicks.
57 * @param item the item child that holds information about roles, affiliation, jids and nicks.
81 * Item child that holds information about roles, affiliation, jids and nicks.
88 private String affiliation; field in class:MUCAdmin.Item
96 * @param affiliation the actor's affiliation to the room
99 public Item(String affiliation, String role) {
100 this.affiliation = affiliation
    [all...]
MUCOwner.java 42 * Returns an Iterator for item childs that holds information about affiliation,
45 * @return an Iterator for item childs that holds information about affiliation,
77 * Adds an item child that holds information about affiliation, jids and nicks.
79 * @param item the item child that holds information about affiliation, jids and nicks.
106 * Item child that holds information about affiliation, jids and nicks.
114 private String affiliation; field in class:MUCOwner.Item
122 * @param affiliation the actor's affiliation to the room
124 public Item(String affiliation) {
125 this.affiliation = affiliation
    [all...]
MUCUser.java 96 * Returns the item child that holds information about roles, affiliation, jids and nicks.
98 * @return an item child that holds information about roles, affiliation, jids and nicks.
156 * Sets the item child that holds information about roles, affiliation, jids and nicks.
158 * @param item the item child that holds information about roles, affiliation, jids and nicks.
367 * Item child that holds information about roles, affiliation, jids and nicks.
374 private String affiliation; field in class:MUCUser.Item
382 * @param affiliation the actor's affiliation to the room
385 public Item(String affiliation, String role) {
386 this.affiliation = affiliation
    [all...]

Completed in 85 milliseconds