Home | History | Annotate | Download | only in muc

Lines Matching refs:room

30  * Represents the room information that was discovered using Service Discovery. It's possible to
31 * obtain information about a room before joining the room but only for rooms that are public (i.e.
39 * JID of the room. The node of the JID is commonly used as the ID of the room or name.
41 private String room;
43 * Description of the room.
47 * Last known subject of the room.
51 * Current number of occupants in the room.
55 * A room is considered members-only if an invitation is required in order to enter the room.
56 * Any user that is not a member of the room won't be able to join the room unless the user
57 * decides to register with the room (thus becoming a member).
61 * Moderated rooms enable only participants to speak. Users that join the room and aren't
71 * Indicates if users must supply a password to join the room.
82 this.room = info.getFrom();
105 * Returns the JID of the room whose information was discovered.
107 * @return the JID of the room whose information was discovered.
110 return room;
114 * Returns the discovered description of the room.
116 * @return the discovered description of the room.
123 * Returns the discovered subject of the room. The subject may be empty if the room does not
126 * @return the discovered subject of the room.
133 * Returns the discovered number of occupants that are currently in the room. If this
137 * @return the number of occupants that are currently in the room or -1 if that information was
145 * Returns true if the room has restricted the access so that only members may enter the room.
147 * @return true if the room has restricted the access so that only members may enter the room.
154 * Returns true if the room enabled only participants to speak. Occupants with a role of
155 * visitor won't be able to speak in the room.
157 * @return true if the room enabled only participants to speak.
173 * Returns true if users musy provide a valid password in order to join the room.
175 * @return true if users musy provide a valid password in order to join the room.
182 * Returns true if the room will persist after the last occupant have left the room.
184 * @return true if the room will persist after the last occupant have left the room.