1 20 package org.apache.cactus.integration.ant.deployment; 21 22 import java.io.IOException ; 23 import java.io.InputStream ; 24 import java.util.List ; 25 26 32 public interface JarArchive 33 { 34 42 boolean containsClass(String theClassName) throws IOException ; 43 44 51 String findResource(String theName) throws IOException ; 52 53 61 InputStream getResource(String thePath) throws IOException ; 62 63 70 List getResources(String thePath) throws IOException ; 71 } 72 | Popular Tags |