Package org.jivesoftware.smackx.muclight
Class MUCLightRoomInfo
- java.lang.Object
-
- org.jivesoftware.smackx.muclight.MUCLightRoomInfo
-
public class MUCLightRoomInfo extends Object
MUC Light room info class.
-
-
Constructor Summary
Constructors Constructor Description MUCLightRoomInfo(String version, Jid roomJid, MUCLightRoomConfiguration configuration, HashMap<Jid,MUCLightAffiliation> occupants)
MUC Light room info model constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MUCLightRoomConfiguration
getConfiguration()
Returns the configuration.HashMap<Jid,MUCLightAffiliation>
getOccupants()
Returns the room occupants.Jid
getRoom()
Returns the JID of the room whose information was discovered.String
getVersion()
Returns the version.
-
-
-
Constructor Detail
-
MUCLightRoomInfo
public MUCLightRoomInfo(String version, Jid roomJid, MUCLightRoomConfiguration configuration, 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 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 HashMap<Jid,MUCLightAffiliation> getOccupants()
Returns the room occupants.- Returns:
- the occupants of the room.
-
-