Uses of Interface
net.openid.appauth.browser.BrowserMatcher
-
Packages that use BrowserMatcher Package Description net.openid.appauth AppAuth for Android.net.openid.appauth.browser Defines an abstraction of browsers and mechanisms by which an app can control which browser will be used by AppAuth for authorization. -
-
Uses of BrowserMatcher in net.openid.appauth
Methods in net.openid.appauth that return BrowserMatcher Modifier and Type Method Description BrowserMatcherAppAuthConfiguration. getBrowserMatcher()Controls which browsers can be used for the authorization flow.Methods in net.openid.appauth with parameters of type BrowserMatcher Modifier and Type Method Description AppAuthConfiguration.BuilderAppAuthConfiguration.Builder. setBrowserMatcher(BrowserMatcher browserMatcher)Specify the browser matcher to use, which controls the browsers that can be used for authorization. -
Uses of BrowserMatcher in net.openid.appauth.browser
Classes in net.openid.appauth.browser that implement BrowserMatcher Modifier and Type Class Description classAnyBrowserMatcherMatches any browser.classBrowserAllowListA allowList of browsers which can be used as part of an authorization flows.classBrowserDenyListA denyList of browsers.classExactBrowserMatcherMatches only the specified browser.classVersionedBrowserMatcherMatches a browser based on its package name, set of signatures, version and whether it is being used as a custom tab.Methods in net.openid.appauth.browser with parameters of type BrowserMatcher Modifier and Type Method Description static BrowserDescriptorBrowserSelector. select(Context context, BrowserMatcher browserMatcher)Searches through all browsers for the best match based on the supplied browser matcher.Constructors in net.openid.appauth.browser with parameters of type BrowserMatcher Constructor Description BrowserAllowList(BrowserMatcher... matchers)Creates a browser allowList, which will match if any of the provided matchers do.BrowserDenyList(BrowserMatcher... matchers)Creates a denyList from the provided set of matchers.
-