Uses of Interface
org.kohsuke.github.authorization.AuthorizationProvider
-
Packages that use AuthorizationProvider Package Description org.kohsuke.github org.kohsuke.github.authorization org.kohsuke.github.extras.authorization -
-
Uses of AuthorizationProvider in org.kohsuke.github
Classes in org.kohsuke.github that implement AuthorizationProvider Modifier and Type Class Description static classGitHub.DependentAuthorizationProviderThe Class DependentAuthorizationProvider.Methods in org.kohsuke.github with parameters of type AuthorizationProvider Modifier and Type Method Description GitHubBuilderGitHubBuilder. withAuthorizationProvider(AuthorizationProvider authorizationProvider)Configures aAuthorizationProviderfor this builder There can be only one authorization provider per client instance.Constructors in org.kohsuke.github with parameters of type AuthorizationProvider Constructor Description DependentAuthorizationProvider(AuthorizationProvider authorizationProvider)An AuthorizationProvider that requires an authenticated GitHub instance to provide its authorization. -
Uses of AuthorizationProvider in org.kohsuke.github.authorization
Subinterfaces of AuthorizationProvider in org.kohsuke.github.authorization Modifier and Type Interface Description interfaceUserAuthorizationProviderInterface for all user-related authorization providers.Classes in org.kohsuke.github.authorization that implement AuthorizationProvider Modifier and Type Class Description classAnonymousAuthorizationProviderAAuthorizationProviderthat returns an empty authorization.classAppInstallationAuthorizationProviderAn AuthorizationProvider that performs automatic token refresh for an organization's AppInstallation.classImmutableAuthorizationProviderAnAuthorizationProviderthat always returns the same credentials.classOrgAppInstallationAuthorizationProviderDeprecated.Fields in org.kohsuke.github.authorization declared as AuthorizationProvider Modifier and Type Field Description static AuthorizationProviderAuthorizationProvider. ANONYMOUSA static instance for an ANONYMOUS authorization providerMethods in org.kohsuke.github.authorization that return AuthorizationProvider Modifier and Type Method Description static AuthorizationProviderImmutableAuthorizationProvider. fromAppInstallationToken(String appInstallationToken)Builds and returns aAuthorizationProviderfrom a given App Installation Tokenstatic AuthorizationProviderImmutableAuthorizationProvider. fromJwtToken(String jwtToken)Builds and returns aAuthorizationProviderfrom a given jwtTokenstatic AuthorizationProviderImmutableAuthorizationProvider. fromLoginAndPassword(String login, String password)Deprecated.Login with password credentials are no longer supported by GitHubstatic AuthorizationProviderImmutableAuthorizationProvider. fromOauthToken(String oauthAccessToken)Builds and returns aAuthorizationProviderfrom a given oauthAccessTokenstatic AuthorizationProviderImmutableAuthorizationProvider. fromOauthToken(String oauthAccessToken, String login)Builds and returns aAuthorizationProviderfrom a given oauthAccessTokenConstructors in org.kohsuke.github.authorization with parameters of type AuthorizationProvider Constructor Description AppInstallationAuthorizationProvider(AppInstallationAuthorizationProvider.AppInstallationProvider appInstallationProvider, AuthorizationProvider authorizationProvider)Provides an AuthorizationProvider that performs automatic token refresh, based on an previously authenticated github client.OrgAppInstallationAuthorizationProvider(String organizationName, AuthorizationProvider authorizationProvider)Deprecated.Replaced byAppInstallationAuthorizationProvider -
Uses of AuthorizationProvider in org.kohsuke.github.extras.authorization
Classes in org.kohsuke.github.extras.authorization that implement AuthorizationProvider Modifier and Type Class Description classJWTTokenProviderA authorization provider that gives valid JWT tokens.
-