01: /**
02: *
03: * Licensed to the Apache Software Foundation (ASF) under one or more
04: * contributor license agreements. See the NOTICE file distributed with
05: * this work for additional information regarding copyright ownership.
06: * The ASF licenses this file to You under the Apache License, Version 2.0
07: * (the "License"); you may not use this file except in compliance with
08: * the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing, software
13: * distributed under the License is distributed on an "AS IS" BASIS,
14: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15: * See the License for the specific language governing permissions and
16: * limitations under the License.
17: */package org.apache.geronimo.pluto;
18:
19: import org.apache.pluto.driver.config.AdminConfiguration;
20: import org.apache.pluto.driver.config.DriverConfiguration;
21: import org.apache.pluto.driver.services.portal.PropertyConfigService;
22: import org.apache.pluto.driver.services.portal.RenderConfigService;
23: import org.apache.pluto.spi.PortalCallbackService;
24:
25: /**
26: * Classes implementing this interface provide access to pluto's
27: * container services
28: *
29: * @version $Rev: 560053 $ $Date: 2007-07-26 18:34:36 -0700 (Thu, 26 Jul 2007) $
30: */
31: public interface PortalContainerServices {
32:
33: AdminConfiguration getAdminConfiguration();
34:
35: void setAdminConfiguration(AdminConfiguration adminConfiguration);
36:
37: RenderConfigService getRenderConfigService();
38:
39: void setRenderConfigService(RenderConfigService renderConfigService);
40:
41: PortalCallbackService getPortalCallbackService();
42:
43: void setPortalCallbackService(
44: PortalCallbackService portalCallbackService);
45:
46: PropertyConfigService getPropertyConfigService();
47:
48: void setPropertyConfigService(
49: PropertyConfigService propertyConfigService);
50:
51: DriverConfiguration getDriverConfiguration();
52:
53: void setDriverConfiguration(DriverConfiguration driverConfiguration);
54:
55: }
|