Class AccountInfoCallback
- java.lang.Object
-
- in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
-
- in.dragonbra.javasteam.steam.handlers.steamuser.callback.AccountInfoCallback
-
- All Implemented Interfaces:
ICallbackMsg
public class AccountInfoCallback extends CallbackMsg
This callback is received when account information is received from the network. This generally happens after logon.
-
-
Constructor Summary
Constructors Constructor Description AccountInfoCallback(in.dragonbra.javasteam.protobufs.steamclient.SteammessagesClientserverLogin.CMsgClientAccountInfo.Builder msg)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.EnumSet<EAccountFlags>getAccountFlags()intgetCountAuthedComputers()java.lang.StringgetCountry()longgetFacebookID()java.lang.StringgetFacebookName()java.lang.StringgetPersonaName()-
Methods inherited from class in.dragonbra.javasteam.steam.steamclient.callbackmgr.CallbackMsg
getJobID, setJobID
-
-
-
-
Method Detail
-
getPersonaName
public java.lang.String getPersonaName()
- Returns:
- the last recorded persona name used by this account.
-
getCountry
public java.lang.String getCountry()
- Returns:
- the country this account is connected from.
-
getCountAuthedComputers
public int getCountAuthedComputers()
- Returns:
- the count of SteamGuard authenticated computers.
-
getAccountFlags
public java.util.EnumSet<EAccountFlags> getAccountFlags()
- Returns:
- the account flags for this account. See
EAccountFlags.
-
getFacebookID
public long getFacebookID()
- Returns:
- the facebook ID of this account if it is linked with facebook.
-
getFacebookName
public java.lang.String getFacebookName()
- Returns:
- the facebook name if this account is linked with facebook.
-
-