Class AuthenticationResult
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.AuthenticationResult
-
- All Implemented Interfaces:
Serializable
public class AuthenticationResult extends Object implements Serializable
Results of Authentication such as 3D Secure.- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getLiabilityShift()
Liability shift indicator.ThreeDSecureAuthentication
getThreeDSecure()
Results of 3D Secure Authentication.void
setLiabilityShift(String liabilityShift)
Liability shift indicator.void
setThreeDSecure(ThreeDSecureAuthentication threeDSecure)
Results of 3D Secure Authentication.
-
-
-
Method Detail
-
setLiabilityShift
public void setLiabilityShift(String liabilityShift)
Liability shift indicator. The outcome of the issuer's authentication. The possible values are:- "YES". Liability has shifted to the card issuer. Available only after order is authorized or captured.
- "NO". Liability is with the merchant.
- "POSSIBLE". Liability may shift to the card issuer. Available only before order is authorized or captured.
- "UNKNOWN". The authentication system is not available.
-
setThreeDSecure
public void setThreeDSecure(ThreeDSecureAuthentication threeDSecure)
Results of 3D Secure Authentication.
-
getLiabilityShift
public String getLiabilityShift()
Liability shift indicator. The outcome of the issuer's authentication. The possible values are:- "YES". Liability has shifted to the card issuer. Available only after order is authorized or captured.
- "NO". Liability is with the merchant.
- "POSSIBLE". Liability may shift to the card issuer. Available only before order is authorized or captured.
- "UNKNOWN". The authentication system is not available.
-
getThreeDSecure
public ThreeDSecureAuthentication getThreeDSecure()
Results of 3D Secure Authentication.
-
-