public class ResetPasswordForm extends Object implements Serializable
You can specify custom implementations of ResetPasswordForm by including
{"classname": "fully.qualified.class.name"} of your class in the json body or
<input type="hidden" name="classname" value="fully.qualified.class.name"/> in the HTML
form. If using the default reset-password.html template, this classname can be set using
the message property reset.pw.form.classname. See the Jackson Docs for more information
on their designs for polymorphic
deserialization.
| Modifier and Type | Class and Description |
|---|---|
static class |
ResetPasswordForm.ResetPasswordFormBuilder |
| Modifier and Type | Field and Description |
|---|---|
protected String |
client_id |
protected String |
password |
protected String |
token |
protected String |
username |
| Constructor and Description |
|---|
ResetPasswordForm() |
ResetPasswordForm(String username,
String token,
String password,
String client_id) |
| Modifier and Type | Method and Description |
|---|---|
static ResetPasswordForm.ResetPasswordFormBuilder |
builder() |
protected boolean |
canEqual(Object other) |
boolean |
equals(Object o) |
String |
getClient_id() |
String |
getPassword() |
String |
getToken() |
String |
getUsername() |
int |
hashCode() |
void |
setClient_id(String client_id) |
void |
setPassword(String password) |
void |
setToken(String token) |
void |
setUsername(String username) |
String |
toString() |
protected String username
protected String token
protected String password
protected String client_id
public ResetPasswordForm(String username, String token, String password, String client_id)
public ResetPasswordForm()
public static ResetPasswordForm.ResetPasswordFormBuilder builder()
public String getUsername()
public String getToken()
public String getPassword()
public String getClient_id()
public void setUsername(String username)
public void setToken(String token)
public void setPassword(String password)
public void setClient_id(String client_id)
protected boolean canEqual(Object other)
Copyright © 2021. All rights reserved.