Class CheckNewPassword
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.CheckNewPassword
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class CheckNewPassword extends Object implements Serializable, CaptchaResponseAction
The API action model for actions where a new user password is provided.- Since:
- 9.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckNewPassword()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenStringgetExistingPassword()Get the user's existing password.StringgetNewPassword()Get the user's new password.StringgetUsername()Get the provided username.voidsetCaptchaResponse(String captchaResponse)Set the provided reCAPTCHA user response tokenvoidsetExistingPassword(String existingPassword)Set the user's existing password.voidsetNewPassword(String newPassword)Set the user's new password.voidsetUsername(String username)Set the provided username.
-
-
-
Method Detail
-
getUsername
public String getUsername()
Get the provided username.
-
setUsername
public void setUsername(String username)
Set the provided username.
-
getExistingPassword
public String getExistingPassword()
Get the user's existing password.
-
setExistingPassword
public void setExistingPassword(String existingPassword)
Set the user's existing password.
-
getNewPassword
public String getNewPassword()
Get the user's new password.
-
setNewPassword
public void setNewPassword(String newPassword)
Set the user's new password.
-
getCaptchaResponse
public String getCaptchaResponse()
Description copied from interface:CaptchaResponseActionGet the provided reCAPTCHA user response token- Specified by:
getCaptchaResponsein interfaceCaptchaResponseAction
-
setCaptchaResponse
public void setCaptchaResponse(String captchaResponse)
Description copied from interface:CaptchaResponseActionSet the provided reCAPTCHA user response token- Specified by:
setCaptchaResponsein interfaceCaptchaResponseAction
-
-