1/*2 * Licensed to the Apache Software Foundation (ASF) under one or more3 * contributor license agreements. See the NOTICE file distributed with4 * this work for additional information regarding copyright ownership.5 * The ASF licenses this file to You under the Apache License, Version 2.06 * (the "License"); you may not use this file except in compliance with7 * the License. You may obtain a copy of the License at8 * 9 * http://www.apache.org/licenses/LICENSE-2.010 * 11 * Unless required by applicable law or agreed to in writing, software12 * 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 and15 * limitations under the License.16 */17packageorg.apache.jetspeed.portlets.pam;
1819/***20 * Common resources used by Portlet Application Manager21 *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 */25publicinterfacePortletApplicationResources26 {
27/*** the selected non-leaf node in the tree view */28publicfinalstatic String REQUEST_NODE = "node";
29/*** the selected leaf node in the tree view */30publicfinalstatic String REQUEST_SELECT_NODE = "select_node";
3132publicfinalstatic String PORTLET_URL = "portlet_url";
33publicfinalstatic String REQUEST_SELECT_PORTLET = "select_portlet";
34publicfinalstatic String REQUEST_SELECT_TAB = "selected_tab";
35publicfinalstatic String PAM_CURRENT_PA = "org.apache.jetspeed.pam.pa";
36publicfinalstatic String CURRENT_FOLDER = "current_folder";
37publicfinalstatic String CURRENT_PAGE = "current_page";
38publicfinalstatic String CURRENT_LINK = "current_link";
39publicfinalstatic String PORTLET_ACTION = "portlet_action";
40publicfinalstatic String REQUEST_SELECT_SITE_TAB = "selected_site_tab";
41publicfinalstatic String SITE_PORTLET = "SitePortlet";
42publicfinalstatic String NODE_UPDATED = "node_updated";
4344// Message Topics45publicfinalstatic String TOPIC_PORTLET_SELECTOR = "portlet.selector";
4647/*** Messages **/48publicstaticfinal String MESSAGE_SELECTED = "selected";
49publicstaticfinal String MESSAGE_CHANGED = "changed";
50publicstaticfinal String MESSAGE_STATUS = "status";
51publicstaticfinal String MESSAGE_REFRESH = "refresh";
52publicstaticfinal String MESSAGE_FILTERED = "filtered";
53publicstaticfinal String MESSAGE_SEARCHSTRING = "searchString";
5455 }