1 23 24 package org.apache.slide.search; 25 26 import org.apache.slide.common.SlideException; 28 import org.apache.slide.common.PropertyName; 29 30 import org.apache.slide.content.NodeProperty; 31 32 import java.util.Iterator ; 33 34 40 public interface RequestedResource { 41 42 49 public String getUri() throws SlideException; 50 51 63 public NodeProperty getProperty(String name, String namespace) throws SlideException; 64 65 74 public NodeProperty getProperty(PropertyName propertyName) throws SlideException; 75 76 83 public Iterator getAllPropertiesNames() throws SlideException; 84 85 92 public Iterator getAllProperties() throws SlideException; 93 94 } 95 96 97 | Popular Tags |