|| "searchTerms".equals(key)) {
// indicates a space delimited list of search terms
if (value != null) {
String val = value.toString();
String[] terms = val.split(" ");
search.addRestriction( new Restriction("searchTerms", terms) );
}
continue;
}
}
search.addRestriction( new Restriction(key, value) );