01: package org.enhydra.dm.handler;
02:
03: import java.io.IOException;
04:
05: import javax.servlet.ServletException;
06: import javax.servlet.http.HttpServletRequest;
07: import javax.servlet.http.HttpServletResponse;
08:
09: import org.enhydra.dm.api.handler.AbstractHandler;
10:
11: public class DefaultUncheckoutHandler extends AbstractHandler {
12:
13: /**
14: * THIS HANDLER CURRENTLY NOT IN USE! <br>
15: * Services requests which use the WebDAV UNCHECKOUT method.
16: *
17: * @param request The request being serviced.
18: * @param response The servlet response.
19: * @throws ServletException If an application error occurs.
20: * @throws IOException If an IO error occurs while handling the request.
21: */
22: public void service(HttpServletRequest request,
23: HttpServletResponse response) throws ServletException,
24: IOException {
25: /*
26: * NOTE: This is dummy implementation that introduces only the list of possible
27: * response statuses.
28: */
29: response.setStatus(HttpServletResponse.SC_OK);
30:
31: }
32:
33: }
|