Uses of Class
org.gitlab4j.api.utils.AccessTokenUtils.Scope
-
Packages that use AccessTokenUtils.Scope Package Description org.gitlab4j.api.utils -
-
Uses of AccessTokenUtils.Scope in org.gitlab4j.api.utils
Methods in org.gitlab4j.api.utils that return AccessTokenUtils.Scope Modifier and Type Method Description static AccessTokenUtils.Scope
AccessTokenUtils.Scope. forValue(String value)
static AccessTokenUtils.Scope
AccessTokenUtils.Scope. valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessTokenUtils.Scope[]
AccessTokenUtils.Scope. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.gitlab4j.api.utils with parameters of type AccessTokenUtils.Scope Modifier and Type Method Description static String
AccessTokenUtils. createPersonalAccessToken(String baseUrl, String username, String password, String tokenName, AccessTokenUtils.Scope[] scopes)
Create a GitLab personal access token with the provided configuration.static void
AccessTokenUtils. revokePersonalAccessToken(String baseUrl, String username, String password, String tokenName, AccessTokenUtils.Scope[] scopes)
Revoke the first matching GitLab personal access token.Method parameters in org.gitlab4j.api.utils with type arguments of type AccessTokenUtils.Scope Modifier and Type Method Description static String
AccessTokenUtils. createPersonalAccessToken(String baseUrl, String username, String password, String tokenName, List<AccessTokenUtils.Scope> scopes)
Create a GitLab personal access token with the provided configuration.static void
AccessTokenUtils. revokePersonalAccessToken(String baseUrl, String username, String password, String tokenName, List<AccessTokenUtils.Scope> scopes)
Revoke the first matching GitLab personal access token.
-