Package io.apicurio.registry.storage.dto
Class VersionSearchResultsDto
- java.lang.Object
-
- io.apicurio.registry.storage.dto.VersionSearchResultsDto
-
public class VersionSearchResultsDto extends Object
- Author:
- eric.wittmann@gmail.com
-
-
Constructor Summary
Constructors Constructor Description VersionSearchResultsDto()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetCount()List<SearchedVersionDto>getVersions()voidsetCount(long count)voidsetVersions(List<SearchedVersionDto> versions)
-
-
-
Method Detail
-
getCount
public long getCount()
- Returns:
- the count
-
setCount
public void setCount(long count)
- Parameters:
count- the count to set
-
getVersions
public List<SearchedVersionDto> getVersions()
- Returns:
- the versions
-
setVersions
public void setVersions(List<SearchedVersionDto> versions)
- Parameters:
versions- the versions to set
-
-