424344454647484950
/** * Creating a default employee and main skill, since the JSF EL can't handle * creating new objects as necessary */ public JsfEmployeeAction() { Employee e = new Employee(); e.setMainSkill(new Skill()); setCurrentEmployee(e); }
110111112113114115116117118119
* This method is called to allow the action to prepare itself. * * @throws Exception thrown if a system level exception occurs. */ public void prepare() throws Exception { Employee preFetched = (Employee) fetch(getEmpId(), getCurrentEmployee()); if (preFetched != null) { setCurrentEmployee(preFetched); } }
444546474849505152
* Creating a default employee and main skill, since the JSF EL can't handle * creating new objects as necessary * */ public JsfEmployeeAction() { Employee e = new Employee(); e.setMainSkill(new Skill()); setCurrentEmployee(e); }
96979899100101102103104105
414243444546474849
9293949596979899100101
400401402403404405406407408409
extraContext.put("parameters", parameterMap); extraContext.put(MODE_NAMESPACE_MAP, modeMap); extraContext.put(PHASE, phase); AttributeMap attrMap = new AttributeMap(extraContext); extraContext.put("attr", attrMap); return extraContext; }
375376377378379380381382383384385
* @param t * the exception * @return the exception as a string. */ protected String toString(Throwable t) { FastByteArrayOutputStream bout = new FastByteArrayOutputStream(); PrintWriter wrt = new PrintWriter(bout); t.printStackTrace(wrt); wrt.close(); return bout.toString(); }