01: /*
02: * Copyright (c) 2001 by Matt Welsh and The Regents of the University of
03: * California. All rights reserved.
04: *
05: * Permission to use, copy, modify, and distribute this software and its
06: * documentation for any purpose, without fee, and without written agreement is
07: * hereby granted, provided that the above copyright notice and the following
08: * two paragraphs appear in all copies of this software.
09: *
10: * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
11: * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
12: * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
13: * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14: *
15: * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
16: * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
17: * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
18: * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
19: * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
20: *
21: * Author: Eric Wagner <eric@xcf.berkeley.edu>
22: *
23: */
24:
25: package com.rimfaxe.webserver.seda;
26:
27: import seda.apps.Haboob.*;
28: import seda.sandStorm.api.*;
29: import seda.sandStorm.core.*;
30: import seda.sandStorm.lib.http.*;
31: import seda.sandStorm.lib.aSocket.*;
32: import seda.sandStorm.lib.aDisk.*;
33:
34: import java.util.*;
35:
36: /**
37: * HDAPI modules must export this interface, which accept an httpRequest
38: * and return an httpResponse.
39: */
40: public interface httpRequestHandlerIF {
41:
42: public httpResponse handleRequest(httpRequest req);
43:
44: public httpResponse handleRequest(httpRequest req,
45: StringBuffer error_log);
46:
47: public boolean isCacheable(httpRequest req);
48:
49: }
|