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 long
getCount()
List<SearchedVersionDto>
getVersions()
void
setCount(long count)
void
setVersions(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
-
-