Package com.thalesgroup.tmgsdk
Interface PendingBindingSession
-
public interface PendingBindingSessionPendingBindingSessionis used to getvProvisionedTokenIdsession details with pending activation.- Since:
- 1.0
- Version:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidactivateBinding(String otp)Activate Binding with or withoutOTP.List<IDVMethod>getIdvMethods()Get list ofIDVMethodIDVMethodpreviouslySelectedIdvMethod()Get previously selectedIDVMethodvoidsubmitIdvMethod(IDVMethod idvMethod)Based on selectedIDVMethod, the corresponding verification flow will be triggered.
-
-
-
Method Detail
-
getIdvMethods
List<IDVMethod> getIdvMethods()
Get list ofIDVMethod- Returns:
- the list of
IDVMethodthat are available
-
submitIdvMethod
void submitIdvMethod(IDVMethod idvMethod)
Based on selectedIDVMethod, the corresponding verification flow will be triggered.- Parameters:
idvMethod- selectedIDVMethod. Mandatory input.
-
activateBinding
void activateBinding(@Nullable String otp)
Activate Binding with or withoutOTP. IfOTPis provided, theTMGSDKwill call the server to validate it. However if theOTPis not provided, theTMGSDKdoes not call the server and activate the binding locally.
-
previouslySelectedIdvMethod
IDVMethod previouslySelectedIdvMethod() throws TMGClientException
Get previously selectedIDVMethod- Returns:
- the previously selected
IDVMethod - Throws:
TMGClientException
-
-