Skip to content

Commit a85c0ec

Browse files
committed
Misc code clean-up.
1 parent 6456679 commit a85c0ec

File tree

4 files changed

+79
-13
lines changed

4 files changed

+79
-13
lines changed

src/main/java/org/gitlab4j/api/Constants.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
package org.gitlab4j.api;
22

3+
import org.gitlab4j.api.utils.JacksonJsonEnumHelper;
4+
35
import com.fasterxml.jackson.annotation.JsonCreator;
46
import com.fasterxml.jackson.annotation.JsonValue;
5-
import org.gitlab4j.api.utils.JacksonJsonEnumHelper;
67

78
public interface Constants {
89

src/main/java/org/gitlab4j/api/GitLabApi.java

+9-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public String getApiNamespace() {
3434
private GroupApi groupApi;
3535
private IssuesApi issuesApi;
3636
private MergeRequestApi mergeRequestApi;
37-
private MileStonesApi mileStonesApi;
37+
private MilestonesApi milestonesApi;
3838
private NamespaceApi namespaceApi;
3939
private PipelineApi pipelineApi;
4040
private ProjectApi projectApi;
@@ -324,7 +324,7 @@ public GitLabApi(ApiVersion apiVersion, String hostUrl, TokenType tokenType, Str
324324
jobApi = new JobApi(this);
325325
labelsApi = new LabelsApi(this);
326326
mergeRequestApi = new MergeRequestApi(this);
327-
mileStonesApi = new MileStonesApi(this);
327+
milestonesApi = new MilestonesApi(this);
328328
namespaceApi = new NamespaceApi(this);
329329
notesApi = new NotesApi(this);
330330
pipelineApi = new PipelineApi(this);
@@ -547,8 +547,13 @@ public MergeRequestApi getMergeRequestApi() {
547547
return (mergeRequestApi);
548548
}
549549

550-
public MileStonesApi getMileStonesApi() {
551-
return mileStonesApi;
550+
/**
551+
* Gets the MilsestonesApi instance owned by this GitLabApi instance.
552+
*
553+
* @return the MilsestonesApi instance owned by this GitLabApi instance
554+
*/
555+
public MilestonesApi getMilestonesApi() {
556+
return milestonesApi;
552557
}
553558

554559
/**

src/main/java/org/gitlab4j/api/LabelsApi.java

+16-5
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
11
package org.gitlab4j.api;
22

3-
import org.gitlab4j.api.models.Label;
3+
import java.util.List;
44

55
import javax.ws.rs.core.GenericType;
66
import javax.ws.rs.core.Response;
7-
import java.util.List;
7+
8+
import org.gitlab4j.api.models.Label;
89

910
public class LabelsApi extends AbstractApi {
1011
public LabelsApi(GitLabApi gitLabApi) {
1112
super(gitLabApi);
1213
}
1314

1415
public List<Label> getLabels(Integer projectId) throws GitLabApiException {
16+
1517
if (projectId == null) {
1618
throw new RuntimeException("projectId cannot be null");
1719
}
20+
1821
Response response = get(javax.ws.rs.core.Response.Status.OK, getDefaultPerPageParam(), "projects", projectId, "labels");
1922
return (response.readEntity(new GenericType<List<Label>>() {
2023
}));
2124
}
2225

2326
public List<Label> getLabels(Integer projectId, int page, int perPage) throws GitLabApiException {
27+
2428
if (projectId == null) {
2529
throw new RuntimeException("projectId cannot be null");
2630
}
27-
Response response = get(javax.ws.rs.core.Response.Status.OK, getPageQueryParams(page, perPage), "projects", projectId, "labels");
31+
32+
Response response = get(javax.ws.rs.core.Response.Status.OK, getPageQueryParams(page, perPage), "projects", projectId, "labels");
2833
return (response.readEntity(new GenericType<List<Label>>() {
2934
}));
3035
}
@@ -42,10 +47,12 @@ public Label createLabel(Integer projectId, String name, String color, Integer p
4247
}
4348

4449
public Label createLabel(Integer projectId, String name, String color, String description, Integer priority) throws GitLabApiException {
45-
if (projectId == null) {
50+
51+
if (projectId == null) {
4652
throw new RuntimeException("projectId cannot be null");
4753
}
48-
GitLabApiForm formData = new GitLabApiForm()
54+
55+
GitLabApiForm formData = new GitLabApiForm()
4956
.withParam("name", name, true)
5057
.withParam("color", color, true)
5158
.withParam("description", description)
@@ -63,9 +70,11 @@ public Label updateLabelColor(Integer projectId, String name, String color, Stri
6370
}
6471

6572
public Label updateLabel(Integer projectId, String name, String newName, String color, String description, Integer priority) throws GitLabApiException {
73+
6674
if (projectId == null) {
6775
throw new RuntimeException("projectId cannot be null");
6876
}
77+
6978
GitLabApiForm formData = new GitLabApiForm()
7079
.withParam("name", name, true)
7180
.withParam("new_name", newName)
@@ -77,9 +86,11 @@ public Label updateLabel(Integer projectId, String name, String newName, String
7786
}
7887

7988
public void deleteLabel(Integer projectId, String name) throws GitLabApiException {
89+
8090
if (projectId == null) {
8191
throw new RuntimeException("projectId cannot be null");
8292
}
93+
8394
GitLabApiForm formData = new GitLabApiForm()
8495
.withParam("name", name, true);
8596
Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT);

src/main/java/org/gitlab4j/api/NotesApi.java

+52-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,67 @@
11
package org.gitlab4j.api;
22

3-
import org.gitlab4j.api.models.Note;
3+
import java.util.Date;
4+
import java.util.List;
45

56
import javax.ws.rs.core.GenericType;
67
import javax.ws.rs.core.Response;
7-
import java.util.Date;
8-
import java.util.List;
8+
9+
import org.gitlab4j.api.models.Note;
910

1011
public class NotesApi extends AbstractApi {
1112

1213
public NotesApi(GitLabApi gitLabApi) {
1314
super(gitLabApi);
1415
}
1516

17+
/**
18+
* Get a list of the issues's notes. Only returns the first page
19+
*
20+
* GET /projects/:id/issues/:issue_iid/notes
21+
*
22+
* @param projectId the project ID to get the issues for
23+
* @param issueIid the issue ID to get the notes for
24+
* @return a list of the issues's notes
25+
* @throws GitLabApiException if any exception occurs
26+
* @deprecated As of release 4.7.0, replaced by {@link #getIssueNotes(Integer, Integer)}
27+
*/
28+
public List<Note> getNotes(Integer projectId, Integer issueIid) throws GitLabApiException {
29+
return (getIssueNotes(projectId, issueIid));
30+
}
31+
32+
/**
33+
* Get a list of the issue's notes using the specified page and per page settings.
34+
*
35+
* GET /projects/:id/issues/:issue_iid/notes
36+
*
37+
* @param projectId the project ID to get the issues for
38+
* @param issueIid the issue IID to get the notes for
39+
* @param page the page to get
40+
* @param perPage the number of notes per page
41+
* @return the list of notes in the specified range
42+
* @throws GitLabApiException if any exception occurs
43+
* @deprecated As of release 4.7.0, replaced by {@link #getIssueNotes(Integer, Integer, int, int)}
44+
*/
45+
public List<Note> getNotes(Integer projectId, Integer issueIid, int page, int perPage) throws GitLabApiException {
46+
return (getIssueNotes(projectId, issueIid, page, perPage));
47+
}
48+
49+
/**
50+
* Get a Pager of issues's notes.
51+
*
52+
* GET /projects/:id/issues/:issue_iid/notes
53+
*
54+
* @param projectId the project ID to get the issues for
55+
* @param issueIid the issue IID to get the notes for
56+
* @param itemsPerPage the number of notes per page
57+
* @return the list of notes in the specified range
58+
* @throws GitLabApiException if any exception occurs
59+
* @deprecated As of release 4.7.0, replaced by {@link #getIssueNotes(Integer, Integer, int)}
60+
*/
61+
public Pager<Note> getNotes(Integer projectId, Integer issueIid, int itemsPerPage) throws GitLabApiException {
62+
return (getIssueNotes(projectId, issueIid, itemsPerPage));
63+
}
64+
1665
/**
1766
* Get a list of the issues's notes. Only returns the first page
1867
*

0 commit comments

Comments
 (0)