?? requesthandler.java
字號(hào):
/* * $Id: RequestHandler.java,v 1.1.4.4 2001/03/15 00:40:07 brydon Exp $ * Copyright 2001 Sun Microsystems, Inc. All rights reserved. * Copyright 2001 Sun Microsystems, Inc. Tous droits r閟erv閟. */package com.huiton.mainframe.control.web.handlers;import com.huiton.mainframe.control.exceptions.DuplicateRecordException;import com.huiton.mainframe.control.event.CERPEvent;import com.huiton.mainframe.control.exceptions.CERPEventException;import javax.servlet.http.HttpServletRequest;import javax.servlet.ServletContext;/** * This class is the base interface to request handlers on the * web tier. **/public interface RequestHandler extends java.io.Serializable { public void setServletContext(ServletContext context); public void doStart(HttpServletRequest request); public CERPEvent processRequest(HttpServletRequest request) throws CERPEventException, Exception; public void doEnd(HttpServletRequest request);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -