Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
2a4e517b
Commit
2a4e517b
authored
Mar 13, 2018
by
Greg Messner
Browse files
Fixed javadoc errors (#154).
parent
4af2f7f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/RunnersApi.java
View file @
2a4e517b
...
...
@@ -279,6 +279,7 @@ public class RunnersApi extends AbstractApi {
*
* @param projectId The ID of the project owned by the authenticated user
* @return List of all Runner available in the project
* @throws GitLabApiException if any exception occurs
*/
public
List
<
Runner
>
getProjectRunners
(
Integer
projectId
)
throws
GitLabApiException
{
if
(
projectId
==
null
)
{
...
...
@@ -296,7 +297,9 @@ public class RunnersApi extends AbstractApi {
* GET /projects/:id/runners
*
* @param projectId The ID of the project owned by the authenticated user
* @param itemsPerPage the number of Project instances that will be fetched per page
* @return Pager of all Runner available in the project
* @throws GitLabApiException if any exception occurs
*/
public
Pager
<
Runner
>
getProjectRunners
(
Integer
projectId
,
int
itemsPerPage
)
throws
GitLabApiException
{
if
(
projectId
==
null
)
{
...
...
@@ -327,7 +330,7 @@ public class RunnersApi extends AbstractApi {
/**
* Disable a specific runner from the project. It works only if the project isn't the only project associated with
* the specified runner. If so, an error is returned. Use the {@link
{
#removeRunner(Integer)}
}
instead.
* the specified runner. If so, an error is returned. Use the {@link
#removeRunner(Integer)} instead.
*
* DELETE /projects/:id/runners/:runner_id
*
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment