Package org.apache.struts2.showcase.model

Examples of org.apache.struts2.showcase.model.Employee


  /**
   * 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);
  }
View Full Code Here


   * 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);
    }
  }
View Full Code Here

     * 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);
    }
View Full Code Here

     * 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);
        }
    }
View Full Code Here

  /**
   * 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);
  }
View Full Code Here

   * 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);
    }
  }
View Full Code Here

     * 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);
    }
View Full Code Here

     * 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);
        }
    }
View Full Code Here

        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;
    }
View Full Code Here

   * @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();
  }
View Full Code Here

TOP

Related Classes of org.apache.struts2.showcase.model.Employee

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.