FileDocCategorySizeDatePackage
MyDispatchAction.javaAPI DocExample1510Mon Jun 28 00:16:48 BST 2004com.oreilly.strutsckbk.ch06

MyDispatchAction

public class MyDispatchAction extends org.apache.struts.actions.DispatchAction

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)

		request.setAttribute("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)

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

		request.setAttribute("dispatchedTo","touch");
		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)

		request.setAttribute("dispatchedTo","update");
		return mapping.findForward("success");