1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.jetspeed.portlets.pam;
18
19 /***
20 * Common resources used by Portlet Application Manager
21 *
22 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
23 * @version $Id: PortletApplicationResources.java 348264 2005-11-22 22:06:45Z taylor $
24 */
25 public interface PortletApplicationResources
26 {
27 /*** the selected non-leaf node in the tree view */
28 public final static String REQUEST_NODE = "node";
29 /*** the selected leaf node in the tree view */
30 public final static String REQUEST_SELECT_NODE = "select_node";
31
32 public final static String PORTLET_URL = "portlet_url";
33 public final static String REQUEST_SELECT_PORTLET = "select_portlet";
34 public final static String REQUEST_SELECT_TAB = "selected_tab";
35 public final static String PAM_CURRENT_PA = "org.apache.jetspeed.pam.pa";
36 public final static String CURRENT_FOLDER = "current_folder";
37 public final static String CURRENT_PAGE = "current_page";
38 public final static String CURRENT_LINK = "current_link";
39 public final static String PORTLET_ACTION = "portlet_action";
40 public final static String REQUEST_SELECT_SITE_TAB = "selected_site_tab";
41 public final static String SITE_PORTLET = "SitePortlet";
42 public final static String NODE_UPDATED = "node_updated";
43
44
45 public final static String TOPIC_PORTLET_SELECTOR = "portlet.selector";
46
47 /*** Messages **/
48 public static final String MESSAGE_SELECTED = "selected";
49 public static final String MESSAGE_CHANGED = "changed";
50 public static final String MESSAGE_STATUS = "status";
51 public static final String MESSAGE_REFRESH = "refresh";
52 public static final String MESSAGE_FILTERED = "filtered";
53 public static final String MESSAGE_SEARCHSTRING = "searchString";
54
55 }