donaldp     01/04/23 22:42:43

  Added:       src/java/org/apache/phoenix/engine/facilities
                        ApplicationManager.java
               src/java/org/apache/phoenix/engine/facilities/application
                        DefaultApplicationManager.java
  Removed:     src/java/org/apache/phoenix/engine/facilities
                        PhoenixManager.java
               src/java/org/apache/phoenix/engine/facilities/phoenix
                        DefaultPhoenixManager.java
  Log:
  Adapt Facility to be a purely Application orienteated Manager rather than 
kernel/embeddor/deployer manager
  
  Revision  Changes    Path
  1.1                  
jakarta-avalon-phoenix/src/java/org/apache/phoenix/engine/facilities/ApplicationManager.java
  
  Index: ApplicationManager.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE file.
   */
  package org.apache.phoenix.engine.facilities;
  
  import org.apache.avalon.atlantis.Facility;
  
  /**
   * This facility is responsible for managing a particular application. 
   *
   * @author <a href="[EMAIL PROTECTED]">Leo Simons</a>
   * @author <a href="mailto:[EMAIL PROTECTED]";>Peter Donald</a>
   */
  public interface ApplicationManager
      extends Facility
  {
  }
  
  
  
  1.1                  
jakarta-avalon-phoenix/src/java/org/apache/phoenix/engine/facilities/application/DefaultApplicationManager.java
  
  Index: DefaultApplicationManager.java
  ===================================================================
  /*
   * Copyright (C) The Apache Software Foundation. All rights reserved.
   *
   * This software is published under the terms of the Apache Software License
   * version 1.1, a copy of which has been included with this distribution in
   * the LICENSE file.
   */
  package org.apache.phoenix.engine.facilities.phoenix;
  
  import org.apache.phoenix.engine.facilities.ApplicationManager;
  
  /**
   * This is default implementation of ApplicationManager.
   * It uses kernel Manager to export management.
   *
   * @author <a href="[EMAIL PROTECTED]">Leo Simons</a>
   * @author <a href="mailto:[EMAIL PROTECTED]";>Peter Donald</a>
   */
  public class DefaultApplicationManager
      implements ApplicationManager
  {
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to