public class CreatePlayerSessionResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the returned data in response to a request action.
Modifier and Type | Field and Description |
---|---|
private PlayerSession |
playerSession
Object containing the newly created player session record.
|
Constructor and Description |
---|
CreatePlayerSessionResult() |
Modifier and Type | Method and Description |
---|---|
CreatePlayerSessionResult |
clone() |
boolean |
equals(java.lang.Object obj) |
PlayerSession |
getPlayerSession()
Object containing the newly created player session record.
|
int |
hashCode() |
void |
setPlayerSession(PlayerSession playerSession)
Object containing the newly created player session record.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreatePlayerSessionResult |
withPlayerSession(PlayerSession playerSession)
Object containing the newly created player session record.
|
private PlayerSession playerSession
Object containing the newly created player session record.
public void setPlayerSession(PlayerSession playerSession)
Object containing the newly created player session record.
playerSession
- Object containing the newly created player session record.public PlayerSession getPlayerSession()
Object containing the newly created player session record.
public CreatePlayerSessionResult withPlayerSession(PlayerSession playerSession)
Object containing the newly created player session record.
playerSession
- Object containing the newly created player session record.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public CreatePlayerSessionResult clone()
clone
in class java.lang.Object