1 19 package org.java.plugin; 20 21 import java.net.URL ; 22 23 import org.java.plugin.registry.Identity; 24 import org.java.plugin.util.ExtendedProperties; 25 26 34 public interface PathResolver { 35 41 void configure(ExtendedProperties config) throws Exception ; 42 43 48 void registerContext(Identity idt, URL url); 49 50 54 void unregisterContext(String id); 55 56 64 URL getRegisteredContext(String id); 65 66 71 boolean isContextRegistered(String id); 72 73 79 URL resolvePath(Identity identity, String path); 80 } | Popular Tags |