/* */ public String execute() /* */ throws Exception /* */ { /* 13 */ if (super.perExecute(this.enumeration) != null) return returnCommand(); /* 14 */ EnumerationManager enumerationMgr = (EnumerationManager) SpringContextHolder.getBean(Enumeration.class); /* 15 */ enumerationMgr.saveEnumeration(this.enumeration); /* 16 */ super.postExecute(this.enumeration); /* 17 */ return returnCommand(); /* */ }
public String execute() throws Exception { if (super.perExecute(enumerationValue) != null) return returnCommand(); EnumerationValueManager enumerationValueMgr = (EnumerationValueManager) SpringContextHolder.getBean(EnumerationValue.class); EnumerationManager enumerationMgr = (EnumerationManager) SpringContextHolder.getBean(Enumeration.class); if (enumerationValue.getEnumeration() != null && enumerationValue.getEnumeration().getId() != null && enumerationValue.getId() == null) { Enumeration enumeration = enumerationMgr.getEnumerationById(enumerationValue.getEnumeration().getId()); enumerationValue.setEnumeration(enumeration); enumeration.getEnumerationValues().add(enumerationValue); } enumerationValueMgr.saveEnumerationValue(enumerationValue); super.postExecute(enumerationValue); return returnCommand(); }