Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
fbb9e1e6
Commit
fbb9e1e6
authored
6 years ago
by
Greg Messner
Browse files
Options
Download
Email Patches
Plain Diff
Renamed from ProjectOfGroupFilter
parent
b78db144
main
5.0.x
5.0.x.jdk17
6.x
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/gitlab4j/api/models/GroupProjectsFilter.java
+12
-12
...ain/java/org/gitlab4j/api/models/GroupProjectsFilter.java
with
12 additions
and
12 deletions
+12
-12
src/main/java/org/gitlab4j/api/models/Project
OfGroup
Filter.java
→
src/main/java/org/gitlab4j/api/models/
Group
Project
s
Filter.java
+
12
-
12
View file @
fbb9e1e6
...
...
@@ -8,7 +8,7 @@ import org.gitlab4j.api.GitLabApiForm;
/**
* This class is used to filter Projects when getting lists of projects for a specified group.
*/
public
class
Project
OfGroup
Filter
{
public
class
Group
Project
s
Filter
{
private
Boolean
archived
;
private
Visibility
visibility
;
...
...
@@ -28,7 +28,7 @@ public class ProjectOfGroupFilter {
* @param archived if true will only return archived projects
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withArchived
(
Boolean
archived
)
{
public
Group
Project
s
Filter
withArchived
(
Boolean
archived
)
{
this
.
archived
=
archived
;
return
(
this
);
}
...
...
@@ -39,7 +39,7 @@ public class ProjectOfGroupFilter {
* @param visibility the visibility to match
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withVisibility
(
Visibility
visibility
)
{
public
Group
Project
s
Filter
withVisibility
(
Visibility
visibility
)
{
this
.
visibility
=
visibility
;
return
(
this
);
}
...
...
@@ -50,7 +50,7 @@ public class ProjectOfGroupFilter {
* @param orderBy specifies what field to order by
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withOrderBy
(
ProjectOrderBy
orderBy
)
{
public
Group
Project
s
Filter
withOrderBy
(
ProjectOrderBy
orderBy
)
{
this
.
orderBy
=
orderBy
;
return
(
this
);
}
...
...
@@ -61,7 +61,7 @@ public class ProjectOfGroupFilter {
* @param sort sort direction, ASC or DESC
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withSortOder
(
SortOrder
sort
)
{
public
Group
Project
s
Filter
withSortOder
(
SortOrder
sort
)
{
this
.
sort
=
sort
;
return
(
this
);
}
...
...
@@ -72,7 +72,7 @@ public class ProjectOfGroupFilter {
* @param search the search criteria
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withSearch
(
String
search
)
{
public
Group
Project
s
Filter
withSearch
(
String
search
)
{
this
.
search
=
search
;
return
(
this
);
}
...
...
@@ -84,7 +84,7 @@ public class ProjectOfGroupFilter {
* @param simple if true, return only limited fields for each project
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withSimple
(
Boolean
simple
)
{
public
Group
Project
s
Filter
withSimple
(
Boolean
simple
)
{
this
.
simple
=
simple
;
return
(
this
);
}
...
...
@@ -95,7 +95,7 @@ public class ProjectOfGroupFilter {
* @param owned if true, limit to projects explicitly owned by the current user
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withOwned
(
Boolean
owned
)
{
public
Group
Project
s
Filter
withOwned
(
Boolean
owned
)
{
this
.
owned
=
owned
;
return
(
this
);
}
...
...
@@ -106,7 +106,7 @@ public class ProjectOfGroupFilter {
* @param starred if true, limit by projects starred by the current user
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withStarred
(
Boolean
starred
)
{
public
Group
Project
s
Filter
withStarred
(
Boolean
starred
)
{
this
.
starred
=
starred
;
return
(
this
);
}
...
...
@@ -117,7 +117,7 @@ public class ProjectOfGroupFilter {
* @param withCustomAttributes if true, include custom attributes in the repsonse
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withCustomAttributes
(
Boolean
withCustomAttributes
)
{
public
Group
Project
s
Filter
withCustomAttributes
(
Boolean
withCustomAttributes
)
{
this
.
withCustomAttributes
=
withCustomAttributes
;
return
(
this
);
}
...
...
@@ -128,7 +128,7 @@ public class ProjectOfGroupFilter {
* @param withIssuesEnabled if true, limit by enabled issues feature
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withIssuesEnabled
(
Boolean
withIssuesEnabled
)
{
public
Group
Project
s
Filter
withIssuesEnabled
(
Boolean
withIssuesEnabled
)
{
this
.
withIssuesEnabled
=
withIssuesEnabled
;
return
(
this
);
}
...
...
@@ -139,7 +139,7 @@ public class ProjectOfGroupFilter {
* @param withMergeRequestsEnabled if true, imit by enabled merge requests feature
* @return the reference to this ProjectFilter instance
*/
public
Project
OfGroup
Filter
withMergeRequestsEnabled
(
Boolean
withMergeRequestsEnabled
)
{
public
Group
Project
s
Filter
withMergeRequestsEnabled
(
Boolean
withMergeRequestsEnabled
)
{
this
.
withMergeRequestsEnabled
=
withMergeRequestsEnabled
;
return
(
this
);
}
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Explore
Projects
Groups
Snippets