Package org.jivesoftware.smackx.muclight
Class MUCLightRoomInfo
- java.lang.Object
-
- org.jivesoftware.smackx.muclight.MUCLightRoomInfo
-
public class MUCLightRoomInfo extends java.lang.Object
MUC Light room info class.
-
-
Constructor Summary
Constructors Constructor Description MUCLightRoomInfo(java.lang.String version, Jid roomJid, MUCLightRoomConfiguration configuration, java.util.HashMap<Jid,MUCLightAffiliation> occupants)MUC Light room info model constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MUCLightRoomConfigurationgetConfiguration()Returns the configuration.java.util.HashMap<Jid,MUCLightAffiliation>getOccupants()Returns the room occupants.JidgetRoom()Returns the JID of the room whose information was discovered.java.lang.StringgetVersion()Returns the version.
-
-
-
Constructor Detail
-
MUCLightRoomInfo
public MUCLightRoomInfo(java.lang.String version, Jid roomJid, MUCLightRoomConfiguration configuration, java.util.HashMap<Jid,MUCLightAffiliation> occupants)
MUC Light room info model constructor.- Parameters:
version- TODO javadoc me pleaseroomJid- TODO javadoc me pleaseconfiguration- TODO javadoc me pleaseoccupants- TODO javadoc me please
-
-
Method Detail
-
getVersion
public java.lang.String getVersion()
Returns the version.- Returns:
- the version
-
getRoom
public Jid getRoom()
Returns the JID of the room whose information was discovered.- Returns:
- the JID of the room whose information was discovered.
-
getConfiguration
public MUCLightRoomConfiguration getConfiguration()
Returns the configuration.- Returns:
- the room configuration
-
getOccupants
public java.util.HashMap<Jid,MUCLightAffiliation> getOccupants()
Returns the room occupants.- Returns:
- the occupants of the room.
-
-