1 23 24 package org.apache.slide.webdav.util.resourcekind; 25 26 import java.util.Set ; 27 28 29 32 public interface ResourceKind { 33 34 37 Set getSupportedLiveProperties(); 38 39 47 Set getSupportedLiveProperties( String filter ); 48 49 57 Set getSupportedLiveProperties( String [] excludedFeatures ); 58 59 68 Set getSupportedLiveProperties( String filter, String [] excludedFeatures ); 69 70 73 Set getSupportedMethods(); 74 75 78 public boolean isSupportedLiveProperty( String prop ); 79 80 83 boolean isSupportedMethod( String method ); 84 85 88 Set getSupportedReports(); 89 90 103 boolean isSupportedPropertyValue(String propertyName, Object value); 104 105 } 106 107 | Popular Tags |