public interface VSAccountManagerDelegate
| Modifier and Type | Method and Description |
|---|---|
void |
accountManagerDismissViewController(VSAccountManager accountManager,
UIViewController viewController)
Called when the account manager is finished using the presented view controller.
|
void |
accountManagerPresentViewController(VSAccountManager accountManager,
UIViewController viewController)
Called when the account manager needs user interaction to complete a request.
|
default boolean |
accountManagerShouldAuthenticateAccountProviderWithIdentifier(VSAccountManager accountManager,
java.lang.String accountProviderIdentifier)
This method can be used to temporarily refrain from authenticating with an
otherwise-supported provider during a transient outage.
|
void accountManagerDismissViewController(VSAccountManager accountManager, UIViewController viewController)
accountManager - The account manager instance that previously asked to show the view controller.viewController - The view controller that is being presented to the user. You must use -dismissViewControllerAnimated:completion: to begin dismissing the view controller before returning from this method.void accountManagerPresentViewController(VSAccountManager accountManager, UIViewController viewController)
accountManager - The account manager instance that needs to show the view controller.viewController - A view controller that needs to be presented to the user. You must use -presentViewController:animated:completion: to begin presenting this view controller before returning from this method.default boolean accountManagerShouldAuthenticateAccountProviderWithIdentifier(VSAccountManager accountManager, java.lang.String accountProviderIdentifier)
accountManager - The account manager instance that received a metadata request.accountProviderIdentifier - Identifies the otherwise-supported account provider.