Uses of Class
org.gitlab4j.api.models.DeployToken
Package | Description |
---|---|
org.gitlab4j.api |
-
Uses of DeployToken in org.gitlab4j.api
Methods in org.gitlab4j.api that return DeployToken Modifier and Type Method Description DeployToken
DeployTokensApi. addGroupDeployToken(Object groupIdOrPath, String name, Date expiresAt, String username, List<Constants.DeployTokenScope> scopes)
Creates a new deploy token for a group.DeployToken
DeployTokensApi. addProjectDeployToken(Object projectIdOrPath, String name, Date expiresAt, String username, List<Constants.DeployTokenScope> scopes)
Creates a new deploy token for a project.Methods in org.gitlab4j.api that return types with arguments of type DeployToken Modifier and Type Method Description List<DeployToken>
DeployTokensApi. getDeployTokens()
Get a list of all deploy tokens across the GitLab instance.Pager<DeployToken>
DeployTokensApi. getDeployTokens(int itemsPerPage)
Get a Pager of all deploy tokens across all projects of the GitLab instance.Stream<DeployToken>
DeployTokensApi. getDeployTokensStream()
Get a Stream of all deploy tokens across all projects of the GitLab instance.List<DeployToken>
DeployTokensApi. getGroupDeployTokens(Object groupIdOrPath)
Get a list of the deploy tokens for the specified group.Pager<DeployToken>
DeployTokensApi. getGroupDeployTokens(Object groupIdOrPath, int itemsPerPage)
Get a Pager of the deploy tokens for the specified group.Stream<DeployToken>
DeployTokensApi. getGroupDeployTokensStream(Object groupIdOrPath)
Get a list of the deploy tokens for the specified group.List<DeployToken>
DeployTokensApi. getProjectDeployTokens(Object projectIdOrPath)
Get a list of the deploy tokens for the specified project.Pager<DeployToken>
DeployTokensApi. getProjectDeployTokens(Object projectIdOrPath, int itemsPerPage)
Get a Pager of the deploy tokens for the specified project.Stream<DeployToken>
DeployTokensApi. getProjectDeployTokensStream(Object projectIdOrPath)
Get a list of the deploy tokens for the specified project.