Interface ODataServicesConfiguration
-
- All Known Implementing Classes:
DefaultOData2ServicesConfiguration
public interface ODataServicesConfiguration
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBatchLimit()Determines current setting of the maximum number of batches allowed in an inbound request body.intgetDefaultPageSize()intgetMaxPageSize()Determines current setting of the maximum number of items allowed per page.voidsetBatchLimit(int maxNumber)Specifies new limit on number of batches in a single inbound request.
-
-
-
Method Detail
-
getBatchLimit
int getBatchLimit()
Determines current setting of the maximum number of batches allowed in an inbound request body.- Returns:
- number of batches that a single request may have.
-
setBatchLimit
void setBatchLimit(int maxNumber)
Specifies new limit on number of batches in a single inbound request.- Parameters:
maxNumber- max number of batches a single inbound request may have.
-
getMaxPageSize
int getMaxPageSize()
Determines current setting of the maximum number of items allowed per page.- Returns:
- number of items that can be returned for a single page.
-
getDefaultPageSize
int getDefaultPageSize()
- Returns:
- the default page size for the extension
-
-