Class GameSessionUpdateMessagePlayerInfo
- java.lang.Object
-
- de.extio.spacecraft.shared.model.message.toclient.GameSessionUpdateMessagePlayerInfo
-
public final class GameSessionUpdateMessagePlayerInfo extends Object
Message send to the client to inform incrementally about any change related to the game session.
-
-
Constructor Summary
Constructors Constructor Description GameSessionUpdateMessagePlayerInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
Integer
getShipSlot()
UUID
getUuid()
boolean
isHost()
boolean
isInGame()
boolean
isLoggedOn()
boolean
isReady()
boolean
isShipSlotHost()
void
setHost(boolean host)
void
setInGame(boolean inGame)
void
setLoggedOn(boolean loggedOn)
void
setName(String name)
void
setReady(boolean ready)
void
setShipSlot(Integer shipSlot)
void
setShipSlotHost(boolean shipSlotHost)
void
setUuid(UUID uuid)
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
isLoggedOn
public boolean isLoggedOn()
-
setLoggedOn
public void setLoggedOn(boolean loggedOn)
-
isReady
public boolean isReady()
-
setReady
public void setReady(boolean ready)
-
isHost
public boolean isHost()
-
setHost
public void setHost(boolean host)
-
getUuid
public UUID getUuid()
-
setUuid
public void setUuid(UUID uuid)
-
isShipSlotHost
public boolean isShipSlotHost()
-
setShipSlotHost
public void setShipSlotHost(boolean shipSlotHost)
-
getShipSlot
public Integer getShipSlot()
-
setShipSlot
public void setShipSlot(Integer shipSlot)
-
isInGame
public boolean isInGame()
-
setInGame
public void setInGame(boolean inGame)
-
-