Class PasswordRequest
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.account.PasswordRequest
-
public class PasswordRequest extends Object
Request for changes the password for an account on this homeserver.
-
-
Field Summary
Fields Modifier and Type Field Description private AuthenticationData
auth
Additional authentication information for the user-interactive authentication API.private char[]
newPassword
Required.
-
Constructor Summary
Constructors Constructor Description PasswordRequest()
-
Method Summary
Modifier and Type Method Description AuthenticationData
getAuth()
char[]
getNewPassword()
void
setAuth(AuthenticationData auth)
void
setNewPassword(char[] newPassword)
-
-
-
Field Detail
-
newPassword
private char[] newPassword
Required. The new password for the account.
-
auth
private AuthenticationData auth
Additional authentication information for the user-interactive authentication API.
-
-
Method Detail
-
getNewPassword
public char[] getNewPassword()
-
setNewPassword
public void setNewPassword(char[] newPassword)
-
getAuth
public AuthenticationData getAuth()
-
setAuth
public void setAuth(AuthenticationData auth)
-
-