action.java

来自「JAVA Servlet2.3外文书籍源码」· Java 代码 · 共 21 行

JAVA
21
字号
package forum;

import javax.servlet.http.*;

/**
 * The superclass for all command/action components.
 *
 * @author    Simon Brown
 */
public abstract class Action {

  /**
   * Peforms the processing associated with this action.
   *
   * @param request     the HttpServletRequest instance
   * @param response    the HttpServletResponse instance
   * @return  the name of the next view
   */
  public abstract String process(HttpServletRequest request, HttpServletResponse response);

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?