mcconnell    2002/07/12 09:30:38

  Added:       assembly/src/java/org/apache/excalibur/merlin/model
                        ComponentProfile.java
  Log:
  was ComponentDescriptor
  
  Revision  Changes    Path
  1.1                  
jakarta-avalon-excalibur/assembly/src/java/org/apache/excalibur/merlin/model/ComponentProfile.java
  
  Index: ComponentProfile.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.model;
  
  import java.io.Serializable;
  import java.util.Hashtable;
  import org.apache.avalon.framework.configuration.Configuration;
  import org.apache.avalon.framework.parameters.Parameters;
  import org.apache.avalon.framework.context.Context;
  import org.apache.excalibur.meta.info.Type;
  import org.apache.excalibur.merlin.model.Profile;
  import org.apache.excalibur.merlin.model.Association;
  import org.apache.excalibur.configuration.ConfigurationUtil;
  
  /**
   * A component profile description.
   * @author <a href="mailto:[EMAIL PROTECTED]";>Stephen McConnell</a>
   * @version $Revision: 1.1 $ $Date: 2002/07/12 16:30:38 $
   */
  public class ComponentProfile extends Profile 
  {
  
      /**
       * Create a Profile instance.
       *
       * @param name the abstract name of component meta data instance
       * @param dependencies the meta data for any dependencies
       * @param type the component type
       */
      public ComponentProfile( final String name,
                             final Parameters parameters,
                             final Configuration configuration,
                             final Context context,
                             final CategoryDescriptor loggers,
                             final Type type,
                             final int mode )
      {
          super( name, parameters, configuration, context, loggers, type, mode );
      }
  
  }
  
  
  

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

Reply via email to