public class ThreeDSecure
extends java.lang.Object
Constructor and Description |
---|
ThreeDSecure() |
Modifier and Type | Method and Description |
---|---|
protected static void |
onActivityResult(BraintreeFragment fragment,
int resultCode,
android.content.Intent data) |
static void |
performVerification(BraintreeFragment fragment,
CardBuilder cardBuilder,
java.lang.String amount)
Verification is associated with a transaction amount and your merchant account.
|
static void |
performVerification(BraintreeFragment fragment,
java.lang.String nonce,
java.lang.String amount)
Verification is associated with a transaction amount and your merchant account.
|
static void |
performVerification(BraintreeFragment fragment,
ThreeDSecureRequest request)
Verification is associated with a transaction amount and your merchant account.
|
public static void performVerification(BraintreeFragment fragment, CardBuilder cardBuilder, java.lang.String amount)
fragment
- the BraintreeFragment
backing the http request. This fragment will
also be responsible for handling callbacks to it's listenerscardBuilder
- The cardBuilder created from raw details. Will be tokenized before
the 3D Secure verification if performed.amount
- The amount of the transaction in the current merchant account's currencypublic static void performVerification(BraintreeFragment fragment, java.lang.String nonce, java.lang.String amount)
fragment
- the BraintreeFragment
backing the http request. This fragment will
also be responsible for handling callbacks to it's listenersnonce
- The nonce that represents a card to perform a 3D Secure verification against.amount
- The amount of the transaction in the current merchant account's currency.public static void performVerification(BraintreeFragment fragment, ThreeDSecureRequest request)
fragment
- the BraintreeFragment
backing the http request. This fragment will
also be responsible for handling callbacks to it's listenersrequest
- the ThreeDSecureRequest
with information used for authentication.protected static void onActivityResult(BraintreeFragment fragment, int resultCode, android.content.Intent data)