1 23 package org.apache.slide.search; 24 25 import org.apache.slide.common.SlideException; 27 28 import org.apache.slide.content.NodeProperty; 29 30 import java.util.Iterator ; 31 32 42 public interface PropertyProvider { 43 44 57 public boolean isSupportedProperty(String resourceUri, String propertyName, String propertyNamespace) throws SlideException; 58 59 60 71 public Iterator getSupportedPropertiesNames(String resourceUri) throws SlideException; 72 73 90 public NodeProperty getProperty(String resourceUri, String propertyName, String propertyNamespace) throws SlideException; 91 92 102 public Iterator getSupportedProperties(String resourceUri) throws SlideException; 103 104 105 } 106 107 | Popular Tags |