01: // webdavd.java
02: // $Id: webdavd.java,v 1.1 2000/09/19 16:14:32 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.jigsaw.webdav;
06:
07: import org.w3c.jigsaw.http.httpd;
08: import org.w3c.jigsaw.http.Client;
09:
10: import org.w3c.www.mime.MimeParserFactory;
11:
12: /**
13: * @version $Revision: 1.1 $
14: * @author Benoît Mahé (bmahe@w3.org)
15: */
16: public class webdavd extends httpd {
17:
18: protected MimeParserFactory getMimeClientFactory(Client client) {
19: return new DAVMimeClientFactory(client);
20: }
21:
22: }
|