File tree 2 files changed +7
-7
lines changed
gitlab4j-models/src/main/java/org/gitlab4j/api/models
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 15
15
public class GroupFilter implements Serializable {
16
16
private static final long serialVersionUID = 1L ;
17
17
18
- private List <Integer > skipGroups ;
18
+ private List <Long > skipGroups ;
19
19
private Boolean allAvailable ;
20
20
private String search ;
21
21
private GroupOrderBy orderBy ;
@@ -33,7 +33,7 @@ public class GroupFilter implements Serializable {
33
33
* @param skipGroups List of group IDs to not include in the search
34
34
* @return the reference to this GroupFilter instance
35
35
*/
36
- public GroupFilter withSkipGroups (List <Integer > skipGroups ) {
36
+ public GroupFilter withSkipGroups (List <Long > skipGroups ) {
37
37
this .skipGroups = skipGroups ;
38
38
return (this );
39
39
}
Original file line number Diff line number Diff line change @@ -26,9 +26,9 @@ public class IssueFilter implements Serializable {
26
26
private static final long serialVersionUID = 1L ;
27
27
28
28
/**
29
- * Return only the milestone having the given iid.
29
+ * Return only the issues having the given iid.
30
30
*/
31
- private List <String > iids ;
31
+ private List <Long > iids ;
32
32
33
33
/**
34
34
* {@link org.gitlab4j.models.Constants.IssueState} Return all issues or just those that are opened or closed.
@@ -146,11 +146,11 @@ public String toString() {
146
146
}
147
147
148
148
/*- properties -*/
149
- public List <String > getIids () {
149
+ public List <Long > getIids () {
150
150
return iids ;
151
151
}
152
152
153
- public void setIids (List <String > iids ) {
153
+ public void setIids (List <Long > iids ) {
154
154
this .iids = iids ;
155
155
}
156
156
@@ -291,7 +291,7 @@ public void setNot(Map<IssueField, Object> not) {
291
291
}
292
292
293
293
/*- builder -*/
294
- public IssueFilter withIids (List <String > iids ) {
294
+ public IssueFilter withIids (List <Long > iids ) {
295
295
this .iids = iids ;
296
296
return (this );
297
297
}
You can’t perform that action at this time.
0 commit comments