Class SubmitIdentifier
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.SubmitIdentifier
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class SubmitIdentifier extends Object implements CaptchaResponseAction
The API action model for actions where an identifier is provided for authentication.- Since:
- 10.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SubmitIdentifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenStringgetIdentifier()Get the 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 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
-
-