Interface ConferenceBookmark
-
- All Superinterfaces:
Bookmark,Comparable<Bookmark>
- All Known Implementing Classes:
ChatRoomBookmark,PepNativeBookmark
public interface ConferenceBookmark extends Bookmark
A bookmark to a conference room (aka chat room).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetNick()The user's preferred roomnick for the chatroom.StringgetPassword()A password used to access the chatroom.booleanisAutojoin()Whether the client should automatically join the conference room on login.-
Methods inherited from interface java.lang.Comparable
compareTo
-
-
-
-
Method Detail
-
isAutojoin
boolean isAutojoin()
Whether the client should automatically join the conference room on login.- Returns:
- true, if the client should join.
-
getNick
String getNick()
The user's preferred roomnick for the chatroom.- Returns:
- The roomnick for the chatroom.
-
getPassword
String getPassword()
A password used to access the chatroom.- Returns:
- The password for the room.
-
-