01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
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: /** the selected non-leaf node in the tree view */
27: public final static String REQUEST_NODE = "node";
28: /** the selected leaf node in the tree view */
29: public final static String REQUEST_SELECT_NODE = "select_node";
30:
31: public final static String PORTLET_URL = "portlet_url";
32: public final static String REQUEST_SELECT_PORTLET = "select_portlet";
33: public final static String REQUEST_SELECT_TAB = "selected_tab";
34: public final static String PAM_CURRENT_PA = "org.apache.jetspeed.pam.pa";
35: public final static String CURRENT_FOLDER = "current_folder";
36: public final static String CURRENT_PAGE = "current_page";
37: public final static String CURRENT_LINK = "current_link";
38: public final static String PORTLET_ACTION = "portlet_action";
39: public final static String REQUEST_SELECT_SITE_TAB = "selected_site_tab";
40: public final static String SITE_PORTLET = "SitePortlet";
41: public final static String NODE_UPDATED = "node_updated";
42:
43: // Message Topics
44: public final static String TOPIC_PORTLET_SELECTOR = "portlet.selector";
45:
46: /** Messages **/
47: public static final String MESSAGE_SELECTED = "selected";
48: public static final String MESSAGE_CHANGED = "changed";
49: public static final String MESSAGE_STATUS = "status";
50: public static final String MESSAGE_REFRESH = "refresh";
51: public static final String MESSAGE_FILTERED = "filtered";
52: public static final String MESSAGE_SEARCHSTRING = "searchString";
53:
54: }
|