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 2004/02/07 23:52:16 UTC

cvs commit: avalon/merlin/composition/api/src/java/org/apache/avalon/composition/runtime RuntimeFactory.java

mcconnell    2004/02/07 14:52:16

  Added:       merlin/composition/api/src/java/org/apache/avalon/composition/runtime
                        RuntimeFactory.java
  Log:
  Move runtime factory from model to runtime package.
  
  Revision  Changes    Path
  1.1                  avalon/merlin/composition/api/src/java/org/apache/avalon/composition/runtime/RuntimeFactory.java
  
  Index: RuntimeFactory.java
  ===================================================================
  /* 
   * Copyright 2004 Apache Software Foundation
   * Licensed  under the  Apache License,  Version 2.0  (the "License");
   * you may not use  this file  except in  compliance with the License.
   * You may obtain a copy of the License at 
   * 
   *   http://www.apache.org/licenses/LICENSE-2.0
   * 
   * Unless required by applicable law or agreed to in writing, software
   * distributed  under the  License is distributed on an "AS IS" BASIS,
   * WITHOUT  WARRANTIES OR CONDITIONS  OF ANY KIND, either  express  or
   * implied.
   * 
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  
  package org.apache.avalon.composition.runtime;
  
  import org.apache.avalon.composition.model.DeploymentModel;
  
  /**
   * A factory enabling the establishment of runtime handlers.
   *
   * @author <a href="mailto:dev@avalon.apache.org">Avalon Development Team</a>
   * @version $Revision: 1.1 $ $Date: 2004/02/07 22:52:16 $
   */
  public interface RuntimeFactory 
  {
     /**
      * Resolve a runtime handler for a model.
      * @param model the deployment model
      * @return the runtime appliance
      */
      Commissionable getRuntime( DeploymentModel model );
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: cvs-unsubscribe@avalon.apache.org
For additional commands, e-mail: cvs-help@avalon.apache.org