public abstract static class ChangePasswordParam.Builder
extends java.lang.Object
| Constructor and Description |
|---|
Builder() |
| Modifier and Type | Method and Description |
|---|---|
abstract ChangePasswordParam |
build()
Builds the
ChangePasswordParam object that is used to wrap various properties
related to changing the user account password. |
abstract ChangePasswordParam.Builder |
bypassClientCheck(boolean bypassClientCheck)
Returns the
ChangePasswordParam.Builder for the ChangePasswordParam.bypassClientCheck() component of
the ChangePasswordParam object. |
abstract ChangePasswordParam.Builder |
newPassword(java.util.List<java.lang.Character> newPassword)
Returns the
ChangePasswordParam.Builder for the ChangePasswordParam.newPassword() component of
the ChangePasswordParam object. |
abstract ChangePasswordParam.Builder |
oldPassword(java.util.List<java.lang.Character> oldPassword)
Returns the
ChangePasswordParam.Builder for the ChangePasswordParam.oldPassword() component of
the ChangePasswordParam object. |
public abstract ChangePasswordParam.Builder bypassClientCheck(boolean bypassClientCheck)
ChangePasswordParam.Builder for the ChangePasswordParam.bypassClientCheck() component of
the ChangePasswordParam object.bypassClientCheck - whether to bypass client check for password.
true if bypass client check for new password
false otherwisepublic abstract ChangePasswordParam.Builder oldPassword(java.util.List<java.lang.Character> oldPassword)
ChangePasswordParam.Builder for the ChangePasswordParam.oldPassword() component of
the ChangePasswordParam object.oldPassword - the old password of the user accountpublic abstract ChangePasswordParam.Builder newPassword(java.util.List<java.lang.Character> newPassword)
ChangePasswordParam.Builder for the ChangePasswordParam.newPassword() component of
the ChangePasswordParam object.newPassword - the new password of the user accountpublic abstract ChangePasswordParam build()
ChangePasswordParam object that is used to wrap various properties
related to changing the user account password.ChangePasswordParam object that is used to wrap various properties
related to changing the user account password.