query.append(getPresentationPlaceSearchEqualQuery (positivePresentationPlace, negativePresentationPlace));
return query.toString();
}
public List<PresentationPlace> searchPrototypeWithCachePresentationPlace(PresentationPlace presentationPlace) {
SimpleCache simpleCache = new SimpleCache();
List<PresentationPlace> list = (List<PresentationPlace>)simpleCache.get(presentationPlace.toString());
if (list==null) {
list = searchPrototypePresentationPlace(presentationPlace);
simpleCache.put(presentationPlace.toString(), list);
}
return list;
}