Class LogOnDetails
- java.lang.Object
-
- in.dragonbra.javasteam.steam.handlers.steamgameserver.LogOnDetails
-
public class LogOnDetails extends java.lang.ObjectRepresents the details required to log into Steam3 as a game server.
-
-
Constructor Summary
Constructors Constructor Description LogOnDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAppID()java.lang.StringgetToken()voidsetAppID(int appID)voidsetToken(java.lang.String token)
-
-
-
Method Detail
-
getToken
public java.lang.String getToken()
- Returns:
- the authentication token used to log in as a game server
-
setToken
public void setToken(java.lang.String token)
- Parameters:
token- the authentication token used to log in as a game server
-
getAppID
public int getAppID()
- Returns:
- the AppID this gameserver will serve
-
setAppID
public void setAppID(int appID)
- Parameters:
appID- the AppID this gameserver will serve
-
-