Package ca.uhn.fhir.rest.server
Class BasePagingProvider
- java.lang.Object
-
- ca.uhn.fhir.rest.server.BasePagingProvider
-
- All Implemented Interfaces:
IPagingProvider
- Direct Known Subclasses:
FifoMemoryPagingProvider
public abstract class BasePagingProvider extends Object implements IPagingProvider
-
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_DEFAULT_PAGE_SIZEstatic intDEFAULT_MAX_PAGE_SIZE
-
Constructor Summary
Constructors Constructor Description BasePagingProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDefaultPageSize()intgetMaximumPageSize()BasePagingProvidersetDefaultPageSize(int theDefaultPageSize)BasePagingProvidersetMaximumPageSize(int theMaximumPageSize)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ca.uhn.fhir.rest.server.IPagingProvider
retrieveResultList, retrieveResultList, storeResultList
-
-
-
-
Field Detail
-
DEFAULT_DEFAULT_PAGE_SIZE
public static final int DEFAULT_DEFAULT_PAGE_SIZE
- See Also:
- Constant Field Values
-
DEFAULT_MAX_PAGE_SIZE
public static final int DEFAULT_MAX_PAGE_SIZE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BasePagingProvider
public BasePagingProvider()
-
-
Method Detail
-
getDefaultPageSize
public int getDefaultPageSize()
- Specified by:
getDefaultPageSizein interfaceIPagingProvider
-
getMaximumPageSize
public int getMaximumPageSize()
- Specified by:
getMaximumPageSizein interfaceIPagingProvider
-
setDefaultPageSize
public BasePagingProvider setDefaultPageSize(int theDefaultPageSize)
-
setMaximumPageSize
public BasePagingProvider setMaximumPageSize(int theMaximumPageSize)
-
-