Class CheckUsernameRecoveryEmail
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.CheckUsernameRecoveryEmail
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class CheckUsernameRecoveryEmail extends Object implements CaptchaResponseAction
The API action model for actions where the user provides the email address associated with the username to be recovered.- Since:
- 9.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckUsernameRecoveryEmail()Create a UsernameRecoveryEmail instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenStringgetEmail()Get the email associated with the username that needs to be recovered.voidsetCaptchaResponse(String captchaResponse)Set the provided reCAPTCHA user response tokenvoidsetEmail(String email)Sets the email associated with the username that needs to be recovered.
-
-
-
Method Detail
-
getEmail
public String getEmail()
Get the email associated with the username that needs to be recovered.
-
setEmail
public void setEmail(String email)
Sets the email associated with the username that needs to be recovered.
-
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
-
-