Class ClearIdentifier
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.ClearIdentifier
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class ClearIdentifier extends Object implements CaptchaResponseAction
The API action model for actions where the user clears a previously submitted identifier from cache.- Since:
- 10.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClearIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenStringgetIdentifier()Get the previously submitted identifier.voidsetCaptchaResponse(String captchaResponse)Set the provided reCAPTCHA user response tokenvoidsetIdentifier(String identifier)Set the identifier.
-
-
-
Method Detail
-
getIdentifier
public String getIdentifier()
Get the previously submitted identifier.
-
setIdentifier
public void setIdentifier(String identifier)
Set the identifier.
-
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
-
-