dain        2006/02/01 06:50:09

  Modified:    modules/core/src/java/org/openejb/server/admin
                        AdminDaemon.java
  Log:

  Major refactor
  Split container into an object to represent a deployed ejb and a set of 
shared containers which process invocations
  Introduced interface between CMP container and CMP engine
  
  Revision  Changes    Path
  1.5       +3 -3      
openejb/modules/core/src/java/org/openejb/server/admin/AdminDaemon.java
  
  Index: AdminDaemon.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/core/src/java/org/openejb/server/admin/AdminDaemon.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AdminDaemon.java  6 Sep 2005 08:09:45 -0000       1.4
  +++ AdminDaemon.java  1 Feb 2006 11:50:08 -0000       1.5
  @@ -52,7 +52,7 @@
   import org.openejb.server.ServiceManager;
   import org.activeio.xnet.ServiceException;
   import org.openejb.client.RequestMethods;
  -import org.openejb.ContainerIndex;
  +import org.openejb.DeploymentIndex;
   
   /**
    * This is the base class for orcistrating the other daemons 
  @@ -72,7 +72,7 @@
       public void init(Properties props) throws Exception {
       }
   
  -    public AdminDaemon(ContainerIndex index) {
  +    public AdminDaemon(DeploymentIndex index) {
       }
   
       public void service(Socket socket) throws ServiceException,IOException {
  
  
  

Reply via email to