private static Logger log = Logger.getLogger(SupportController.class);
@Cache("searchRestrictions")
public List<JsonModelEntry> cacheSearchRestrictions() {
List<JsonModelEntry> model = new ArrayList<JsonModelEntry>();
model.add(new JsonModelEntry("0", "All Items"));
model.add(new JsonModelEntry("1", "File names and contents"));
model.add(new JsonModelEntry("2", "File names only"));
model.add(new JsonModelEntry("3", "Space names only"));
return model;
}