01: // HttpDirectoryResource.java
02: // $Id: WebDAVDirectoryResource.java,v 1.1 2005/06/08 12:41:35 ylafon Exp $
03: // (c) COPYRIGHT MIT, ERCIM and Keio, 2005.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.jigsaw.resources;
07:
08: public class WebDAVDirectoryResource extends DirectoryResource {
09:
10: public void initialize(Object values[]) {
11: super .initialize(values);
12: try {
13: registerFrameIfNone("org.w3c.jigsaw.webdav.DAVFrame",
14: "webdav-frame");
15: } catch (Exception ex) {
16: ex.printStackTrace();
17: }
18: }
19:
20: }
|