Class GroupSearchResults
- java.lang.Object
-
- io.apicurio.registry.rest.v2.beans.GroupSearchResults
-
@Generated("jsonschema2pojo") public class GroupSearchResults extends Object
Describes the response received when searching for groups.
-
-
Constructor Summary
Constructors Constructor Description GroupSearchResults()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetCount()The total number of groups that matched the query that produced the result set (may be more than the number of groups in the result set).List<SearchedGroup>getGroups()The groups returned in the result set.voidsetCount(Integer count)The total number of groups that matched the query that produced the result set (may be more than the number of groups in the result set).voidsetGroups(List<SearchedGroup> groups)The groups returned in the result set.
-
-
-
Method Detail
-
getGroups
public List<SearchedGroup> getGroups()
The groups returned in the result set. (Required)
-
setGroups
public void setGroups(List<SearchedGroup> groups)
The groups returned in the result set. (Required)
-
getCount
public Integer getCount()
The total number of groups that matched the query that produced the result set (may be more than the number of groups in the result set). (Required)
-
setCount
public void setCount(Integer count)
The total number of groups that matched the query that produced the result set (may be more than the number of groups in the result set). (Required)
-
-