1 23 24 package org.apache.webdav.lib.methods; 25 26 37 public interface DepthSupport { 38 39 40 42 43 46 public static final int DEPTH_0 = 0; 47 48 49 52 public static final int DEPTH_1 = 1; 53 54 55 58 public static final int DEPTH_INFINITY = Integer.MAX_VALUE; 59 60 61 63 64 69 public void setDepth(int depth); 70 71 72 77 public int getDepth(); 78 } 79 | Popular Tags |