Class CheckCurrentCredentials
- java.lang.Object
-
- com.pingidentity.sdk.api.authn.model.action.CheckCurrentCredentials
-
- All Implemented Interfaces:
CaptchaResponseAction,Serializable
public class CheckCurrentCredentials extends Object implements Serializable, CaptchaResponseAction
The API action model for actions where a user provides current credentials.- Since:
- 10.2
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CheckCurrentCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCaptchaResponse()Get the provided reCAPTCHA user response tokenStringgetPassword()Get the provided current password.StringgetUsername()Get the provided username.voidsetCaptchaResponse(String captchaResponse)Set the provided reCAPTCHA user response tokenvoidsetPassword(String password)Set the provided current 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.
-
getPassword
public String getPassword()
Get the provided current password.
-
setPassword
public void setPassword(String password)
Set the provided current 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
-
-