You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by mc...@apache.org on 2002/07/12 18:00:48 UTC

cvs commit: jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin Controller.java

mcconnell    2002/07/12 09:00:48

  Added:       assembly/src/java/org/apache/excalibur/merlin
                        Controller.java
  Log:
  was Manageable interface
  
  Revision  Changes    Path
  1.1                  jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/Controller.java
  
  Index: Controller.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.txt file.
   */
  
  package org.apache.excalibur.merlin;
  
  /**
   * A service that provides support managable startup and shutdown.
   * @author <a href="mailto:mcconnell@apache.org">Stephen McConnell</a>
   * @version $Revision: 1.1 $ $Date: 2002/07/12 16:00:48 $
   */
  public interface Controller
  {
     /**
      * Request the startup of the managable unit.
      */
      void startup() throws Exception;
  
     /**
      * Request the shutdown of the managable unit.
      */
      void shutdown();
  
  }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>