1
1
package org .gitlab4j .api ;
2
2
3
- import org . gitlab4j . api . models . Label ;
3
+ import java . util . List ;
4
4
5
5
import javax .ws .rs .core .GenericType ;
6
6
import javax .ws .rs .core .Response ;
7
- import java .util .List ;
7
+
8
+ import org .gitlab4j .api .models .Label ;
8
9
9
10
public class LabelsApi extends AbstractApi {
10
11
public LabelsApi (GitLabApi gitLabApi ) {
11
12
super (gitLabApi );
12
13
}
13
14
14
15
public List <Label > getLabels (Integer projectId ) throws GitLabApiException {
16
+
15
17
if (projectId == null ) {
16
18
throw new RuntimeException ("projectId cannot be null" );
17
19
}
20
+
18
21
Response response = get (javax .ws .rs .core .Response .Status .OK , getDefaultPerPageParam (), "projects" , projectId , "labels" );
19
22
return (response .readEntity (new GenericType <List <Label >>() {
20
23
}));
21
24
}
22
25
23
26
public List <Label > getLabels (Integer projectId , int page , int perPage ) throws GitLabApiException {
27
+
24
28
if (projectId == null ) {
25
29
throw new RuntimeException ("projectId cannot be null" );
26
30
}
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" );
28
33
return (response .readEntity (new GenericType <List <Label >>() {
29
34
}));
30
35
}
@@ -42,10 +47,12 @@ public Label createLabel(Integer projectId, String name, String color, Integer p
42
47
}
43
48
44
49
public Label createLabel (Integer projectId , String name , String color , String description , Integer priority ) throws GitLabApiException {
45
- if (projectId == null ) {
50
+
51
+ if (projectId == null ) {
46
52
throw new RuntimeException ("projectId cannot be null" );
47
53
}
48
- GitLabApiForm formData = new GitLabApiForm ()
54
+
55
+ GitLabApiForm formData = new GitLabApiForm ()
49
56
.withParam ("name" , name , true )
50
57
.withParam ("color" , color , true )
51
58
.withParam ("description" , description )
@@ -63,9 +70,11 @@ public Label updateLabelColor(Integer projectId, String name, String color, Stri
63
70
}
64
71
65
72
public Label updateLabel (Integer projectId , String name , String newName , String color , String description , Integer priority ) throws GitLabApiException {
73
+
66
74
if (projectId == null ) {
67
75
throw new RuntimeException ("projectId cannot be null" );
68
76
}
77
+
69
78
GitLabApiForm formData = new GitLabApiForm ()
70
79
.withParam ("name" , name , true )
71
80
.withParam ("new_name" , newName )
@@ -77,9 +86,11 @@ public Label updateLabel(Integer projectId, String name, String newName, String
77
86
}
78
87
79
88
public void deleteLabel (Integer projectId , String name ) throws GitLabApiException {
89
+
80
90
if (projectId == null ) {
81
91
throw new RuntimeException ("projectId cannot be null" );
82
92
}
93
+
83
94
GitLabApiForm formData = new GitLabApiForm ()
84
95
.withParam ("name" , name , true );
85
96
Response .Status expectedStatus = (isApiVersion (GitLabApi .ApiVersion .V3 ) ? Response .Status .OK : Response .Status .NO_CONTENT );
0 commit comments