1 50 package org.apache.avalon.meta.info.locator; 51 52 import java.io.InputStream ; 53 import java.io.OutputStream ; 54 import java.io.IOException ; 55 56 import org.apache.avalon.meta.info.Type; 57 58 65 public interface ResourceLocator 66 { 67 68 76 InputStream getInputStream( Type type, String key ) throws IOException ; 77 78 86 OutputStream getOutputStream( Type type, String key ) throws IOException ; 87 } 88 | Popular Tags |