Package com.adyen.model.acswebhooks
Class RelayedAuthenticationResponse
- java.lang.Object
-
- com.adyen.model.acswebhooks.RelayedAuthenticationResponse
-
public class RelayedAuthenticationResponse extends Object
RelayedAuthenticationResponse
-
-
Field Summary
Fields Modifier and Type Field Description static StringJSON_PROPERTY_AUTHENTICATION_DECISION
-
Constructor Summary
Constructors Constructor Description RelayedAuthenticationResponse()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RelayedAuthenticationResponseauthenticationDecision(AuthenticationDecision authenticationDecision)authenticationDecisionbooleanequals(Object o)Return true if this RelayedAuthenticationResponse object is equal to o.static RelayedAuthenticationResponsefromJson(String jsonString)Create an instance of RelayedAuthenticationResponse given an JSON stringAuthenticationDecisiongetAuthenticationDecision()Get authenticationDecisioninthashCode()voidsetAuthenticationDecision(AuthenticationDecision authenticationDecision)authenticationDecisionStringtoJson()Convert an instance of RelayedAuthenticationResponse to an JSON stringStringtoString()
-
-
-
Field Detail
-
JSON_PROPERTY_AUTHENTICATION_DECISION
public static final String JSON_PROPERTY_AUTHENTICATION_DECISION
- See Also:
- Constant Field Values
-
-
Method Detail
-
authenticationDecision
public RelayedAuthenticationResponse authenticationDecision(AuthenticationDecision authenticationDecision)
authenticationDecision- Parameters:
authenticationDecision-- Returns:
- the current
RelayedAuthenticationResponseinstance, allowing for method chaining
-
getAuthenticationDecision
public AuthenticationDecision getAuthenticationDecision()
Get authenticationDecision- Returns:
- authenticationDecision
-
setAuthenticationDecision
public void setAuthenticationDecision(AuthenticationDecision authenticationDecision)
authenticationDecision- Parameters:
authenticationDecision-
-
equals
public boolean equals(Object o)
Return true if this RelayedAuthenticationResponse object is equal to o.
-
fromJson
public static RelayedAuthenticationResponse fromJson(String jsonString) throws com.fasterxml.jackson.core.JsonProcessingException
Create an instance of RelayedAuthenticationResponse given an JSON string- Parameters:
jsonString- JSON string- Returns:
- An instance of RelayedAuthenticationResponse
- Throws:
com.fasterxml.jackson.core.JsonProcessingException- if the JSON string is invalid with respect to RelayedAuthenticationResponse
-
toJson
public String toJson() throws com.fasterxml.jackson.core.JsonProcessingException
Convert an instance of RelayedAuthenticationResponse to an JSON string- Returns:
- JSON string
- Throws:
com.fasterxml.jackson.core.JsonProcessingException
-
-