Uses of Enum Class
org.miaixz.bus.gitlab.support.AccessToken.Scope
Packages that use AccessToken.Scope
-
Uses of AccessToken.Scope in org.miaixz.bus.gitlab.support
Methods in org.miaixz.bus.gitlab.support that return AccessToken.ScopeModifier and TypeMethodDescriptionstatic AccessToken.Scopestatic AccessToken.ScopeReturns the enum constant of this class with the specified name.static AccessToken.Scope[]AccessToken.Scope.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.miaixz.bus.gitlab.support with parameters of type AccessToken.ScopeModifier and TypeMethodDescriptionstatic final StringAccessToken.createPersonalAccessToken(String baseUrl, String username, String password, String tokenName, AccessToken.Scope[] scopes) Create a GitLab personal access token with the provided configuration.static final voidAccessToken.revokePersonalAccessToken(String baseUrl, String username, String password, String tokenName, AccessToken.Scope[] scopes) Revoke the first matching GitLab personal access token.Method parameters in org.miaixz.bus.gitlab.support with type arguments of type AccessToken.ScopeModifier and TypeMethodDescriptionstatic final StringAccessToken.createPersonalAccessToken(String baseUrl, String username, String password, String tokenName, List<AccessToken.Scope> scopes) Create a GitLab personal access token with the provided configuration.static final voidAccessToken.revokePersonalAccessToken(String baseUrl, String username, String password, String tokenName, List<AccessToken.Scope> scopes) Revoke the first matching GitLab personal access token.