1 45 46 package org.openejb.spi; 47 48 import org.openejb.Container; 49 import org.openejb.DeploymentInfo; 50 51 75 public interface ContainerSystem { 76 77 78 79 88 public DeploymentInfo getDeploymentInfo(Object id); 89 90 97 public DeploymentInfo [] deployments( ); 98 99 107 public Container getContainer(Object id); 108 109 115 public Container [] containers( ); 116 117 118 128 public javax.naming.Context getJNDIContext(); 129 } | Popular Tags |