-
public abstract class GigyaLoginCallback<A> extends GigyaCallback<A>
Gigya login response abstract callback. Non abstract function are used for optional interruption handling.
-
-
Method Summary
Modifier and Type Method Description voidonPendingVerification(@NonNull() GigyaApiResponse response, @Nullable() String regToken)voidonPendingRegistration(@NonNull() GigyaApiResponse response, @NonNull() IPendingRegistrationResolver resolver)voidonConflictingAccounts(@NonNull() GigyaApiResponse response, @NonNull() ILinkAccountsResolver resolver)voidonPendingPasswordChange(@NonNull() GigyaApiResponse response)voidonPendingTwoFactorRegistration(@NonNull() GigyaApiResponse response, @NonNull() List<TFAProviderModel> inactiveProviders, @NonNull() TFAResolverFactory resolverFactory)voidonPendingTwoFactorVerification(@NonNull() GigyaApiResponse response, @NonNull() List<TFAProviderModel> activeProviders, @NonNull() TFAResolverFactory resolverFactory)voidonCaptchaRequired(@NonNull() GigyaApiResponse response)-
-
Method Detail
-
onPendingVerification
void onPendingVerification(@NonNull() GigyaApiResponse response, @Nullable() String regToken)
-
onPendingRegistration
void onPendingRegistration(@NonNull() GigyaApiResponse response, @NonNull() IPendingRegistrationResolver resolver)
-
onConflictingAccounts
void onConflictingAccounts(@NonNull() GigyaApiResponse response, @NonNull() ILinkAccountsResolver resolver)
-
onPendingPasswordChange
void onPendingPasswordChange(@NonNull() GigyaApiResponse response)
-
onPendingTwoFactorRegistration
void onPendingTwoFactorRegistration(@NonNull() GigyaApiResponse response, @NonNull() List<TFAProviderModel> inactiveProviders, @NonNull() TFAResolverFactory resolverFactory)
-
onPendingTwoFactorVerification
void onPendingTwoFactorVerification(@NonNull() GigyaApiResponse response, @NonNull() List<TFAProviderModel> activeProviders, @NonNull() TFAResolverFactory resolverFactory)
-
onCaptchaRequired
void onCaptchaRequired(@NonNull() GigyaApiResponse response)
-
-
-
-