public abstract static class ResetPasswordParam.Builder
extends java.lang.Object
ResetPasswordParam.Builder abstract class allows the user to create and return a
ResetPasswordParam object. For example, | Modifier and Type | Method and Description |
|---|---|
abstract ResetPasswordParam |
build()
Builds the
ResetPasswordParam object that is used to wrap various properties
related to the user account password reset. |
abstract ResetPasswordParam.Builder |
bypassClientCheck(boolean bypassClientCheck)
Returns the
ResetPasswordParam.Builder for the ResetPasswordParam.bypassClientCheck() component of
the ResetPasswordParam object. |
abstract ResetPasswordParam.Builder |
email(java.lang.String email)
Returns the
ResetPasswordParam.Builder for the ResetPasswordParam.email() component of the
ResetPasswordParam object. |
abstract ResetPasswordParam.Builder |
password(java.util.List<java.lang.Character> password)
Returns the
ResetPasswordParam.Builder for the ResetPasswordParam.password() component of
the ResetPasswordParam object. |
abstract ResetPasswordParam.Builder |
sessionId(java.lang.String sessionId)
Returns the
ResetPasswordParam.Builder for the ResetPasswordParam.sessionId() component of
the ResetPasswordParam object. |
public abstract ResetPasswordParam.Builder email(java.lang.String email)
ResetPasswordParam.Builder for the ResetPasswordParam.email() component of the
ResetPasswordParam object.email - the email address of the user accountResetPasswordParam.Builder for the ResetPasswordParam.email() component of the
ResetPasswordParam object.public abstract ResetPasswordParam.Builder password(java.util.List<java.lang.Character> password)
ResetPasswordParam.Builder for the ResetPasswordParam.password() component of
the ResetPasswordParam object.password - the new password of the user accountResetPasswordParam.Builder for the ResetPasswordParam.password() component of
the ResetPasswordParam object.public abstract ResetPasswordParam.Builder sessionId(java.lang.String sessionId)
ResetPasswordParam.Builder for the ResetPasswordParam.sessionId() component of
the ResetPasswordParam object.sessionId - the session ID for user account password resetResetPasswordParam.Builder for the ResetPasswordParam.sessionId() component of
the ResetPasswordParam object.public abstract ResetPasswordParam.Builder bypassClientCheck(boolean bypassClientCheck)
ResetPasswordParam.Builder for the ResetPasswordParam.bypassClientCheck() component of
the ResetPasswordParam object.bypassClientCheck - whether to bypass client check for password.
true if bypass client check for password
false otherwisepublic abstract ResetPasswordParam build()
ResetPasswordParam object that is used to wrap various properties
related to the user account password reset.ResetPasswordParam object that is used to wrap various properties
related to the user account password reset.