You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by he...@apache.org on 2003/06/20 02:03:51 UTC

cvs commit: jakarta-turbine-2/src/java/org/apache/turbine/services/avaloncomponent AvalonComponentService.java

henning     2003/06/19 17:03:51

  Modified:    src/java/org/apache/turbine/services/avaloncomponent
                        AvalonComponentService.java
  Log:
  - Add a constant for the logger category of avalon components
  - Add constants for the various property keys
  - Add Default values for the property keys
  
  Revision  Changes    Path
  1.8       +16 -3     jakarta-turbine-2/src/java/org/apache/turbine/services/avaloncomponent/AvalonComponentService.java
  
  Index: AvalonComponentService.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/avaloncomponent/AvalonComponentService.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- AvalonComponentService.java	25 Apr 2003 02:04:17 -0000	1.7
  +++ AvalonComponentService.java	20 Jun 2003 00:03:51 -0000	1.8
  @@ -63,6 +63,7 @@
    * This service allows access to avalon components.
    *
    * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
  + * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
    * @version $Id$
    */
   public interface AvalonComponentService
  @@ -71,11 +72,23 @@
       /** The publically visible name of the service */
       String SERVICE_NAME = "AvalonComponentService";
   
  +    /** Where we write the Avalon Logger messages */
  +    String AVALON_LOG_CATEGORY = "avalon";
  +
  +    /** property specifing file name of the component config file */
  +    String COMPONENT_CONFIG_KEY = "componentConfiguration";
  +
       /** property specifing file name of the component config file */
  -    String COMPONENT_CONFIG = "componentConfiguration";
  +    String COMPONENT_CONFIG_VALUE = "/WEB-INF/conf/componentConfiguration.xml";
   
       /** property specifing file name of the component role file */
  -    String COMPONENT_ROLE = "componentRoles";
  +    String COMPONENT_ROLE_KEY = "componentRoles";
  +
  +    /** property specifing file name of the component role file */
  +    String COMPONENT_ROLE_VALUE = "/WEB-INF/conf/roleConfiguration.xml";
  +
  +    /** property for the Components to look up */
  +    String COMPONENT_LOOKUP_KEY = "lookup";
   
       /** Key used in the context for defining the application root */
       String COMPONENT_APP_ROOT = "componentAppRoot";
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-dev-help@jakarta.apache.org