Class ArtifactSearchResults
- java.lang.Object
-
- io.apicurio.registry.rest.v2.beans.ArtifactSearchResults
-
public class ArtifactSearchResults extends Object
Describes the response received when searching for artifacts.
-
-
Constructor Summary
Constructors Constructor Description ArtifactSearchResults()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<SearchedArtifact>
getArtifacts()
The artifacts returned in the result set.Integer
getCount()
The total number of artifacts that matched the query that produced the result set (may be more than the number of artifacts in the result set).void
setArtifacts(List<SearchedArtifact> artifacts)
The artifacts returned in the result set.void
setCount(Integer count)
The total number of artifacts that matched the query that produced the result set (may be more than the number of artifacts in the result set).
-
-
-
Method Detail
-
getArtifacts
public List<SearchedArtifact> getArtifacts()
The artifacts returned in the result set. (Required)
-
setArtifacts
public void setArtifacts(List<SearchedArtifact> artifacts)
The artifacts returned in the result set. (Required)
-
getCount
public Integer getCount()
The total number of artifacts that matched the query that produced the result set (may be more than the number of artifacts in the result set). (Required)
-
setCount
public void setCount(Integer count)
The total number of artifacts that matched the query that produced the result set (may be more than the number of artifacts in the result set). (Required)
-
-