add method getMaxNumOfItemsPerRequest

This commit is contained in:
Sascha Szott
2025-04-01 19:49:28 +02:00
committed by GitHub
parent fb91feaafe
commit 0d4b87f9e8

View File

@@ -112,4 +112,10 @@ public interface OpenSearchService {
public DSpaceObject resolveScope(Context context, String scope) throws SQLException;
/**
* Retrieves the maximum number of items that can be included in a single opensearch request.
*
* @return the maximum number of items allowed per request
*/
int getMaxNumOfItemsPerRequest();
}