001    /**
002     *
003     *  Licensed to the Apache Software Foundation (ASF) under one or more
004     *  contributor license agreements.  See the NOTICE file distributed with
005     *  this work for additional information regarding copyright ownership.
006     *  The ASF licenses this file to You under the Apache License, Version 2.0
007     *  (the "License"); you may not use this file except in compliance with
008     *  the License.  You may obtain a copy of the License at
009     *
010     *     http://www.apache.org/licenses/LICENSE-2.0
011     *
012     *  Unless required by applicable law or agreed to in writing, software
013     *  distributed under the License is distributed on an "AS IS" BASIS,
014     *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015     *  See the License for the specific language governing permissions and
016     *  limitations under the License.
017     */
018    package org.apache.geronimo.pluto;
019    
020    import org.apache.pluto.driver.config.AdminConfiguration;
021    import org.apache.pluto.driver.config.DriverConfiguration;
022    import org.apache.pluto.driver.services.portal.PropertyConfigService;
023    import org.apache.pluto.driver.services.portal.RenderConfigService;
024    import org.apache.pluto.spi.PortalCallbackService;
025    
026    /**
027     * Classes implementing this interface provide access to pluto's
028     * container services
029     * 
030     * @version $Rev: 706640 $ $Date: 2008-10-21 14:44:05 +0000 (Tue, 21 Oct 2008) $
031     */
032    public interface PortalContainerServices {
033        
034        AdminConfiguration getAdminConfiguration();
035        void setAdminConfiguration(AdminConfiguration adminConfiguration);
036        
037        RenderConfigService getRenderConfigService();
038        void setRenderConfigService(RenderConfigService renderConfigService);
039        
040        PortalCallbackService getPortalCallbackService();
041        void setPortalCallbackService(PortalCallbackService portalCallbackService);
042    
043        PropertyConfigService getPropertyConfigService();
044        void setPropertyConfigService(PropertyConfigService propertyConfigService);
045    
046        DriverConfiguration getDriverConfiguration();
047        void setDriverConfiguration(DriverConfiguration driverConfiguration);
048        
049    }