FileDocCategorySizeDatePackage
MyMappingDispatchAction.javaAPI DocExample1427Wed Jun 23 17:43:56 BST 2004com.oreilly.strutsckbk.ch06

MyMappingDispatchAction

public class MyMappingDispatchAction extends org.apache.struts.actions.MappingDispatchAction

Fields Summary
Constructors Summary
Methods Summary
public org.apache.struts.action.ActionForwardcreate(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)

		PropertyUtils.setSimpleProperty(form, "dispatchedTo", "create");
		return mapping.findForward("success");
  
public org.apache.struts.action.ActionForwarddelete(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)

		PropertyUtils.setSimpleProperty(form, "dispatchedTo", "delete");
		return mapping.findForward("success");
	
public org.apache.struts.action.ActionForwardupdate(org.apache.struts.action.ActionMapping mapping, org.apache.struts.action.ActionForm form, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)

		PropertyUtils.setSimpleProperty(form, "dispatchedTo", "update");
		return mapping.findForward("success");