01: // WebOnSwing - Web Application Framework
02: //Copyright (C) 2003 Fernando Damian Petrola
03: //
04: //This library is free software; you can redistribute it and/or
05: //modify it under the terms of the GNU Lesser General Public
06: //License as published by the Free Software Foundation; either
07: //version 2.1 of the License, or (at your option) any later version.
08: //
09: //This library is distributed in the hope that it will be useful,
10: //but WITHOUT ANY WARRANTY; without even the implied warranty of
11: //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: //Lesser General Public License for more details.
13: //
14: //You should have received a copy of the GNU Lesser General Public
15: //License along with this library; if not, write to the Free Software
16: //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17:
18: package net.ar.webonswing.pages;
19:
20: import java.io.*;
21: import java.util.*;
22:
23: import javax.servlet.http.*;
24:
25: import net.ar.webonswing.wrapping.*;
26:
27: public interface HtmlPage extends Page {
28: public void prepareFromRequest(HttpServletRequest aRequest);
29:
30: public void processRequest(HttpServletRequest aRequest);
31:
32: public void setRequest(HttpServletRequest aRequest);
33:
34: public void dispatchEvents();
35:
36: public void prepareResponse(HttpServletResponse aResponse)
37: throws Exception;
38:
39: public void renderPage(HttpServletResponse aResponse)
40: throws Exception;
41:
42: public Map getPersistedData();
43:
44: public void setPersistedData(Map aData);
45:
46: public void persistValue(String aKey, Serializable aSerializable);
47:
48: public Serializable restoreValue(String aKey);
49:
50: public VisualWindow getPersitableWindow();
51:
52: public String getUrl();
53:
54: public boolean isWindowInSession();
55:
56: public void setWindowInSession(boolean isWindowInSession);
57: }
|