View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    * 
9    *      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  {    
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      // Message Topics
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  }