Searched refs:occupant (Results 1 - 3 of 3) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java29 * Represents the information about an occupant in a given room. The information will always have
30 * the affiliation and role of the occupant in the room. The full JID and nickname are optional.
63 * Returns the full JID of the occupant. If this information was extracted from a presence and
68 * @return the full JID of the occupant.
75 * Returns the affiliation of the occupant. Possible affiliations are: "owner", "admin",
78 * @return the affiliation of the occupant.
85 * Returns the current role of the occupant in the room. This information will always be
88 * @return the current role of the occupant in the room.
95 * Returns the current nickname of the occupant in the room. If this information was extracted
98 * @return the current nickname of the occupant i
[all...]
H A DMultiUserChat.java541 // Reset occupant information.
720 // Reset occupant information.
728 * Invites another user to the room in which one is an occupant. The invitation
742 * Invites another user to the room in which one is an occupant using a given Message. The invitation
976 * Changes the occupant's nickname to a new nickname within the room. Each room occupant
980 * status code 303 indicates that the occupant is changing his/her nickname.
983 * @throws XMPPException if the new nickname is already in use by another occupant.
1028 * Changes the occupant's availability status within the room. The presence type
1061 * Kicks a visitor or participant from the room. The kicked occupant wil
1853 createPrivateChat(String occupant, MessageListener listener) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DOccupantsInfo.java78 for (OccupantInfo occupant : occupants) {
79 buf.append("<occupant>");
80 // Add the occupant jid
82 buf.append(occupant.getJID());
84 // Add the occupant nickname
86 buf.append(occupant.getNickname());
88 // Add the date when the occupant joined the room
90 buf.append(UTC_FORMAT.format(occupant.getJoined()));
92 buf.append("</occupant>");
139 ("occupant"
[all...]

Completed in 404 milliseconds