Class RegisterUser
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.RegisterUser
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class RegisterUser extends Object implements Serializable, CaptchaResponseAction
The API action model for actions where a user is registering.- Since:
- 10.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RegisterUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenMap<String,Object>getFieldValues()StringgetPassword()booleangetThisIsMyDevice()Get the provided 'This Is My Device' selection.booleanisThisIsMyDevice()voidsetCaptchaResponse(String captchaResponse)Set the provided reCAPTCHA user response tokenvoidsetFieldValues(Map<String,Object> fieldValues)voidsetPassword(String password)voidsetThisIsMyDevice(boolean thisIsMyDevice)Set the provided 'This Is My Device' selection.
-
-
-
Method Detail
-
getThisIsMyDevice
public boolean getThisIsMyDevice()
Get the provided 'This Is My Device' selection.
-
setThisIsMyDevice
public void setThisIsMyDevice(boolean thisIsMyDevice)
Set the provided 'This Is My Device' selection.
-
isThisIsMyDevice
public boolean isThisIsMyDevice()
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String 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
-
-