01: // DAVTimeout.java
02: // $Id: DAVTimeout.java,v 1.1 2000/09/20 15:07:47 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.webdav;
06:
07: import org.w3c.www.http.BasicValue;
08:
09: /**
10: * @version $Revision: 1.1 $
11: * @author Benoît Mahé (bmahe@w3.org)
12: */
13: public class DAVTimeout extends BasicValue {
14:
15: protected void parse() {
16:
17: }
18:
19: protected void updateByteValue() {
20:
21: }
22:
23: public Object getValue() {
24: return this ;
25: }
26:
27: public DAVTimeout() {
28: this .isValid = false;
29: }
30:
31: }
|