1 14 15 package com.ibm.webdav; 16 17 import java.util.Enumeration ; 18 19 31 public class Activity extends Resource { 32 35 private Activity() { 36 super(); 37 } 38 43 private Activity(Resource resource) throws WebDAVException { 44 super(resource); 45 } 46 51 private Activity(String url) throws WebDAVException { 52 super(url); 53 } 54 62 private Activity(String protocol, String host, int port, String file) throws WebDAVException { 63 super(protocol, host, port, file); 64 } 65 72 private Activity(String protocol, String host, String file) throws WebDAVException { 73 super(protocol, host, file); 74 } 75 80 private Activity(java.net.URL url) throws WebDAVException { 81 super(url); 82 } 83 89 private Activity(java.net.URL context, String spec) throws WebDAVException { 90 super(context, spec); 91 } 92 100 public void addDependent(Activity dependent) throws WebDAVException { 101 } 102 119 public void addLabel(String label) throws WebDAVException { 120 } 121 130 public boolean contains(Resource revision) throws WebDAVException { 131 return false; 132 133 } 134 141 public static Activity create(java.net.URL url) throws WebDAVException { 142 return null; 143 } 144 152 public Enumeration getDependents() throws WebDAVException { 153 return null; 154 } 155 162 public Enumeration getMembers() throws WebDAVException { 163 return null; 164 165 } 166 174 public void removeDependent(Activity dependent) throws WebDAVException { 175 } 176 185 public void removeLabel(String label) throws WebDAVException { 186 } 187 } 188 | Popular Tags |