Package com.eduix.genexp.storage
Interface StorageQuery
-
- All Known Subinterfaces:
StorageSearchResult<T>
- All Known Implementing Classes:
StorageQueryDTO,StorageSearchResultDTO
public interface StorageQueryAn interface for a study element storage service query- Author:
- Jarkko Leponiemi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCreatedAfter()DategetModifiedAfter()StorageNextgetNext()StringgetOrganisation()intgetPageSize()StringgetType()DategetValidDate()
-
-
-
Method Detail
-
getPageSize
int getPageSize()
- Returns:
- the size of the query page
-
getType
String getType()
- Returns:
- the study element type
-
getOrganisation
String getOrganisation()
- Returns:
- the study element responsible organisation
-
getCreatedAfter
Date getCreatedAfter()
- Returns:
- the earliest creation date for study elements
-
getModifiedAfter
Date getModifiedAfter()
- Returns:
- the earliest modification date for study elements
-
getValidDate
Date getValidDate()
- Returns:
- the validity date for study elements
-
getNext
StorageNext getNext()
- Returns:
- the next page definition
-
-