001package org.apache.turbine.services.avaloncomponent;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *   http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import org.apache.avalon.framework.service.ServiceManager;
023import org.apache.turbine.services.Service;
024import org.apache.turbine.services.TurbineServiceProvider;
025
026/**
027 * This service allows access to avalon components.
028 *
029 * @author <a href="mailto:quintonm@bellsouth.net">Quinton McCombs</a>
030 * @author <a href="mailto:hps@intermeta.de">Henning P. Schmiedehausen</a>
031 * @version $Id$
032 */
033public interface AvalonComponentService
034        extends Service, ServiceManager, TurbineServiceProvider
035{
036    /** The publically visible name of the service */
037    String SERVICE_NAME = "AvalonComponentService";
038
039    /** Where we write the Avalon Logger messages */
040    String AVALON_LOG_CATEGORY = "avalon";
041
042    /** property specifing file name of the component config file */
043    String COMPONENT_CONFIG_KEY = "componentConfiguration";
044
045    /** property specifing file name of the component config file */
046    String COMPONENT_CONFIG_VALUE = "/WEB-INF/conf/componentConfiguration.xml";
047
048    /** property specifing file name of the component role file */
049    String COMPONENT_ROLE_KEY = "componentRoles";
050
051    /** property specifing file name of the component role file */
052    String COMPONENT_ROLE_VALUE = "/WEB-INF/conf/roleConfiguration.xml";
053
054    /** property for the Components to look up */
055    String COMPONENT_LOOKUP_KEY = "lookup";
056
057    /** Key used in the context for defining the application root */
058    String COMPONENT_APP_ROOT = "componentAppRoot";
059}