final IntParameter PAGE_SIZE_PARAM = new IntParameter(PAGE_SIZE_ID, new GreaterConstraint(0), 4000);
if(config.grab(PAGE_SIZE_PARAM)) {
pageSize = PAGE_SIZE_PARAM.getValue();
}
LongParameter CACHE_SIZE_PARAM = new LongParameter(CACHE_SIZE_ID, new GreaterEqualConstraint(0), Integer.MAX_VALUE);
if(config.grab(CACHE_SIZE_PARAM)) {
cacheSize = CACHE_SIZE_PARAM.getValue();
}
}