1 6 7 package org.jfox.ioc.deployment; 8 9 import java.io.File ; 10 import java.net.URL ; 11 import java.net.URLClassLoader ; 12 13 import org.jfox.ioc.deploy.DeployException; 14 15 18 19 public interface Deployable { 20 21 26 URL getDescriptorURL(); 27 28 33 File getPackage(); 34 35 40 URLClassLoader getClassLoader(); 41 42 45 void deploy(Deployer deployer) throws DeployException; 46 47 51 File getTempDeployDirectory(); 52 } 53 | Popular Tags |