1 package de.uni_hamburg.eggink.autojar;2 3 import java.io.*;4 5 /** Normal file as found in filepath6 * 7 * @author Bernd Eggink, RRZ Uni Hamburg (Bernd.Eggink@rrz.uni-hamburg.de) 8 */9 10 interface NormalFile11 {12 InputStream getInputStream() throws IOException;13 String getBase(); // Dir or zip file14 String getPath();15 }16 17