}
public Text2 getText(String type, String textId, String language) throws Exception {
//String id = type+"-"+textId+"-"+language;
Text2 text = null; //cache.get(id);
if (text == null) {
// log.debug("read");
List<Text2> texts = findByCriteria(Expression.eq("type", type), Expression.eq("textId", textId), Expression.eq("language", language));
if (texts.isEmpty()) {
return null;