01: /*
02: * Davenport WebDAV SMB Gateway Copyright (C) 2003 Eric Glass This library is free
03: * software; you can redistribute it and/or modify it under the terms of the GNU Lesser
04: * General Public License as published by the Free Software Foundation; either version 2.1
05: * of the License, or (at your option) any later version. This library is distributed in
06: * the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
07: * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
08: * General Public License for more details. You should have received a copy of the GNU
09: * Lesser General Public License along with this library; if not, write to the Free
10: * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
11: */
12:
13: package org.enhydra.dm.handler;
14:
15: import java.io.IOException;
16:
17: import javax.servlet.ServletException;
18: import javax.servlet.http.HttpServletRequest;
19: import javax.servlet.http.HttpServletResponse;
20:
21: import org.enhydra.dm.api.handler.AbstractHandler;
22:
23: public class DefaultPostHandler extends AbstractHandler {
24:
25: /**
26: * THIS HANDLER CURRENTLY NOT IN USE! <br>
27: * Services requests which use the HTTP POST method.
28: *
29: * @param request The request being serviced.
30: * @param response The servlet response.
31: * @param auth The user's authentication information.
32: * @throws SerlvetException If an application error occurs.
33: * @throws IOException If an IO error occurs while handling the request.
34: */
35:
36: public void service(HttpServletRequest request,
37: HttpServletResponse response) throws ServletException,
38: IOException {
39: }
40:
41: }
|