Class ArtifactSearchResults
- java.lang.Object
-
- io.apicurio.registry.rest.v1.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 that matched the search criteria.Integer
getCount()
The total number of artifacts that matched the search criteria.void
setArtifacts(List<SearchedArtifact> artifacts)
The artifacts that matched the search criteria.void
setCount(Integer count)
The total number of artifacts that matched the search criteria.String
toString()
-
-
-
Method Detail
-
getArtifacts
public List<SearchedArtifact> getArtifacts()
The artifacts that matched the search criteria. (Required)
-
setArtifacts
public void setArtifacts(List<SearchedArtifact> artifacts)
The artifacts that matched the search criteria. (Required)
-
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)
-
-