01: // DAVLockInfo.java
02: // $Id: DAVLockInfo.java,v 1.4 2000/10/12 16:19:20 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.xml;
06:
07: import org.w3c.dom.Element;
08: import org.w3c.dom.Node;
09:
10: /**
11: * @version $Revision: 1.4 $
12: * @author Benoît Mahé (bmahe@w3.org)
13: */
14: public class DAVLockInfo extends DAVLockEntry {
15:
16: public Node getOwner() {
17: return getDAVNode(OWNER_NODE);
18: }
19:
20: DAVLockInfo(Element element) {
21: super(element);
22: }
23:
24: }
|