Class VersionSearchResults
- java.lang.Object
-
- io.apicurio.registry.rest.v1.beans.VersionSearchResults
-
public class VersionSearchResults extends Object
Describes the response received when searching for artifacts.
-
-
Constructor Summary
Constructors Constructor Description VersionSearchResults()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getCount()
The total number of artifacts that matched the search criteria.List<SearchedVersion>
getVersions()
(Required)void
setCount(Integer count)
The total number of artifacts that matched the search criteria.void
setVersions(List<SearchedVersion> versions)
(Required)
-
-
-
Method Detail
-
getCount
public Integer getCount()
The total number of artifacts that matched the search criteria. (Required)
-
setCount
public void setCount(Integer count)
The total number of artifacts that matched the search criteria. (Required)
-
getVersions
public List<SearchedVersion> getVersions()
(Required)
-
setVersions
public void setVersions(List<SearchedVersion> versions)
(Required)
-
-