* @return true if request is valid and supports pagination, false if request is valid but doesn't support pagination.
* @throws org.eclipse.persistence.jpa.rs.exceptions.JPARSException in case of any validation errors.
*/
@Override
public boolean isFeatureApplicable() throws JPARSException {
final RestPageable paginationData = getPaginationData();
if (paginationData != null) {
// Field supports pagination, do parameters check
checkParameters(paginationData.limit());
return true;
} else {
// Pagination is not supported by query. Check that there are no pagination related query parameters.
if (queryParameters.containsKey(QueryParameters.JPARS_PAGING_LIMIT)
|| queryParameters.containsKey(QueryParameters.JPARS_PAGING_OFFSET)) {