FileDocCategorySizeDatePackage
EditEmployeeAction.javaAPI DocExample628Wed Jul 28 09:00:16 BST 2004com.oreilly.strutsckbk.ch07

EditEmployeeAction.java

package com.oreilly.strutsckbk.ch07;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.beanutils.PropertyUtils;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;

public class EditEmployeeAction extends Action {
	public ActionForward execute(ActionMapping mapping, ActionForm form,
			HttpServletRequest request, HttpServletResponse response)
			throws Exception {
		return mapping.findForward("success");
	}
}