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 StringgetPassword()StringgetPin()StringgetTotpSecret()StringgetUsername()booleanisPinPresent()booleanisTotpSecretPresent()voidsetPassword(String password)voidsetPin(String pin)voidsetTotpSecret(String totpSecret)voidsetUsername(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()
-
-