1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.pluto.services.information;
21
22 import org.apache.pluto.om.common.ObjectID;
23 import org.apache.pluto.om.portlet.PortletDefinition;
24 /***
25 * Provide information from the portal to portlet container
26 * that don't change between requests.
27 */
28
29 public interface StaticInformationProvider
30 {
31
32 /***
33 * Returns the portal context
34 *
35 * @return the portal context
36 */
37 public PortalContextProvider getPortalContextProvider();
38
39
40 /***
41 * Returns the portlet model to the passed guid
42 *
43 * @param portletGUID
44 * the GUID of the portlet model to be returned
45 *
46 * @return the portlet model
47 */
48 public PortletDefinition getPortletDefinition(ObjectID portletGUID);
49
50 }