Interface ODataServicesConfiguration
- All Known Implementing Classes:
DefaultOData2ServicesConfiguration
public interface ODataServicesConfiguration
-
Method Summary
Modifier and TypeMethodDescriptionintDetermines current setting of the maximum number of batches allowed in an inbound request body.intGet the list of the exportable integration object codes.intDetermines 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.default voidsetExportableIntegrationObjects(List<String> exportableIOs) Set the exportable integration objects.
-
Method Details
-
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
-
getExportableIntegrationObjects
Get the list of the exportable integration object codes.- Returns:
- the list of the exportable integration object codes
-
setExportableIntegrationObjects
Set the exportable integration objects.- Parameters:
exportableIOs- the list of exportable integration object codes
-