01: // DAVRequest.java
02: // $Id: DAVRequest.java,v 1.1 2000/10/11 13:20:08 bmahe Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05: package org.w3c.www.protocol.webdav;
06:
07: /**
08: * @version $Revision: 1.1 $
09: * @author Benoît Mahé (bmahe@w3.org)
10: */
11: public class DAVRequest extends org.w3c.www.protocol.http.Request {
12:
13: protected DAVRequest(DAVManager manager) {
14: super(manager);
15: }
16: }
|