001package org.apache.turbine.services;
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 static org.junit.Assert.assertNotNull;
023
024import org.apache.commons.logging.Log;
025import org.apache.commons.logging.LogFactory;
026import org.apache.fulcrum.localization.LocalizationService;
027import org.apache.turbine.annotation.TurbineService;
028/**
029 * This service is used for testing 2nd level injection of services and class level declaration of 
030 * {@link TurbineService} (interface is optional). 
031 *
032 * @author <a href="mailto:gk@apache.org">Georg Kallidis</a>
033 */
034@TurbineService( ServiceWithServiceInjection2.SERVICE_NAME )
035public class ServiceWithServiceInjection2 extends FieldAnnotatedTurbineBaseService 
036{
037    
038    static final String SERVICE_NAME = "ServiceWithService2";
039    
040    private static Log log = LogFactory.getLog(ServiceWithServiceInjection2.class);
041    
042    // Test for implicit SERVICE_NAME
043    @TurbineService
044    private LocalizationService localizationService2;
045    
046    /**
047     * Initializes the service.
048     */
049    @Override
050    public void init() throws InitializationException
051    {
052        super.init();
053        log.info("localizationService2 is: " + localizationService2);
054//        setInit(true);
055    }
056    
057    public void callService() 
058    {
059        assertNotNull("localizationService2 object was Null.", localizationService2);
060    }
061}