Package org.rspeer.game.script.component
Class GameAccount.Details
- java.lang.Object
-
- org.rspeer.game.script.component.GameAccount.Details
-
- Enclosing class:
- GameAccount
public static class GameAccount.Details extends Object
For jagex accounts, username is the character id and password is the session id. Username must be prefixed with an asterisk (*) to indicate that it's a jagex account.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPassword()
String
getPin()
String
getTotpSecret()
String
getUsername()
boolean
isPinPresent()
boolean
isTotpSecretPresent()
void
setPassword(String password)
void
setPin(String pin)
void
setTotpSecret(String totpSecret)
void
setUsername(String username)
-
-
-
Method Detail
-
getUsername
public String getUsername()
-
setUsername
public void setUsername(String username)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getPin
public String getPin()
-
setPin
public void setPin(String pin)
-
getTotpSecret
public String getTotpSecret()
-
setTotpSecret
public void setTotpSecret(String totpSecret)
-
isPinPresent
public boolean isPinPresent()
-
isTotpSecretPresent
public boolean isTotpSecretPresent()
-
-