001    // Copyright 2005 The Apache Software Foundation
002    //
003    // Licensed under the Apache License, Version 2.0 (the "License");
004    // you may not use this file except in compliance with the License.
005    // You may obtain a copy of the License at
006    //
007    //     http://www.apache.org/licenses/LICENSE-2.0
008    //
009    // Unless required by applicable law or agreed to in writing, software
010    // distributed under the License is distributed on an "AS IS" BASIS,
011    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
012    // See the License for the specific language governing permissions and
013    // limitations under the License.
014    
015    package org.apache.tapestry.services.impl;
016    
017    import java.util.List;
018    
019    import org.apache.tapestry.services.ApplicationGlobals;
020    import org.apache.tapestry.services.Infrastructure;
021    
022    /**
023     * Base class for settting up services and configurations inside
024     * {@link org.apache.tapestry.services.ApplicationGlobals tapestry.globals.ApplicationGlobals}.
025     * 
026     * @author Howard M. Lewis Ship
027     * @since 4.0
028     */
029    public class AbstractSetupApplicationGlobals
030    {
031    
032        private ApplicationGlobals _globals;
033    
034        private List _factoryServices;
035    
036        private Infrastructure _infrastructure;
037    
038        protected void initialize(String mode)
039        {
040            _globals.storeFactoryServices(_factoryServices);
041    
042            _infrastructure.initialize(mode);
043        }
044    
045        public void setGlobals(ApplicationGlobals globals)
046        {
047            _globals = globals;
048        }
049    
050        public void setFactoryServices(List factoryServices)
051        {
052            _factoryServices = factoryServices;
053        }
054    
055        public void setInfrastructure(Infrastructure infrastructure)
056        {
057            _infrastructure = infrastructure;
058        }
059    }