1 25 26 package org.objectweb.easybeans.api; 27 28 import java.net.URL ; 29 import java.util.Iterator ; 30 31 35 public interface EZBArchive { 36 37 40 String getName(); 41 42 46 URL getURL() throws EZBArchiveException; 47 48 54 URL getResource(String resourceName) throws EZBArchiveException; 55 56 60 Iterator <URL > getResources() throws EZBArchiveException; 61 62 67 Iterator <URL > getResources(String resourceName) throws EZBArchiveException; 68 69 74 boolean close(); 75 } 76 | Popular Tags |