File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
gitlab4j-models/src/main/java/org/gitlab4j/api/models Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11package org .gitlab4j .api .models ;
22
33import java .io .Serializable ;
4+ import java .util .List ;
45
5- import org .gitlab4j .models .Constants .ProjectOrderBy ;
6+ import org .gitlab4j .models .Constants .GroupOrderBy ;
67import org .gitlab4j .models .Constants .SortOrder ;
78import org .gitlab4j .models .GitLabForm ;
89import org .gitlab4j .models .utils .JacksonJson ;
@@ -27,7 +28,7 @@ public class SharedGroupsFilter implements Serializable {
2728 * @param skipGroups List of group IDs to not include in the search
2829 * @return the reference to this SharedGroupsFilter instance
2930 */
30- public GroupFilter withSkipGroups (List <Long > skipGroups ) {
31+ public SharedGroupsFilter withSkipGroups (List <Long > skipGroups ) {
3132 this .skipGroups = skipGroups ;
3233 return (this );
3334 }
@@ -82,7 +83,7 @@ public SharedGroupsFilter withVisibility(Visibility visibility) {
8283 * @param minAccessLevel the minimum access level to match
8384 * @return the reference to this SharedGroupsFilter instance
8485 */
85- public SharedGroupsFilter withMinAccessLevel (Boolean minAccessLevel ) {
86+ public SharedGroupsFilter withMinAccessLevel (AccessLevel minAccessLevel ) {
8687 this .minAccessLevel = minAccessLevel ;
8788 return (this );
8889 }
You can’t perform that action at this time.
0 commit comments