1 13 14 package com.ibm.webdav; 15 16 import java.io.*; 17 import java.rmi.*; 18 import java.util.*; 19 20 import org.w3c.dom.*; 21 22 28 public class VersionedResource extends Resource { 29 32 public VersionedResource() { 33 super(); 34 } 35 40 public VersionedResource(Resource resource) throws WebDAVException { 41 super(resource); 42 } 43 48 public VersionedResource(String url) throws WebDAVException { 49 super(url); 50 } 51 59 public VersionedResource(String protocol, String host, int port, String file) throws WebDAVException { 60 super(protocol, host, port, file); 61 } 62 69 public VersionedResource(String protocol, String host, String file) throws WebDAVException { 70 super(protocol, host, file); 71 } 72 77 public VersionedResource(java.net.URL url) throws WebDAVException { 78 super(url); 79 } 80 86 public VersionedResource(java.net.URL context, String spec) throws WebDAVException { 87 super(context, spec); 88 } 89 103 public MultiStatus delete() throws WebDAVException { 104 return null; 105 } 106 115 public TargetSelector getDefaultTarget() throws WebDAVException { 116 return null; 117 } 118 126 public Enumeration getMutableProperties() throws WebDAVException { 127 return null; 128 } 129 140 public Document getRevisionHistory() throws WebDAVException { 141 return null; 142 } 143 151 public Enumeration getRevisions() throws WebDAVException { 152 return null; 153 } 154 168 public Element getVersioningOptions() throws WebDAVException { 169 return null; 170 } 171 177 public Enumeration getWorkingResources() throws WebDAVException { 178 return null; 179 } 180 191 public boolean isAutomaticallyVersioned() throws WebDAVException { 192 return false; 193 } 194 204 public boolean isLinear() throws WebDAVException { 205 return false; 206 } 207 216 public void setDefaultTarget(TargetSelector targetSelector) throws WebDAVException { 217 218 } 219 } 220 | Popular Tags |