1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.kernel.util;
16  
17  /**
18   * <a href="WebKeys.java.html"><b><i>View Source</i></b></a>
19   *
20   * @author Brian Wing Shun Chan
21   */
22  public interface WebKeys {
23  
24      public static final String AUI_SCRIPT_DATA = "LIFERAY_SHARED_AUI_SCRIPT_DATA";
25  
26      public static final String CLP_MESSAGE_LISTENERS = "CLP_MESSAGE_LISTENERS";
27  
28      public static final String CTX = "CTX";
29  
30      public static final String CURRENT_COMPLETE_URL = "CURRENT_COMPLETE_URL";
31  
32      public static final String CURRENT_URL = "CURRENT_URL";
33  
34      public static final String LAYOUT = "LAYOUT";
35  
36      public static final String LAYOUTS = "LAYOUTS";
37  
38      /**
39       * @deprecated Use <code>VISITED_GROUP_ID_PREVIOUS</code>.
40       */
41      public static final String LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS = "LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS";
42  
43      /**
44       * @deprecated Use <code>VISITED_GROUP_ID_RECENT</code>.
45       */
46      public static final String LIFERAY_SHARED_VISITED_GROUP_ID_RECENT = "LIFERAY_SHARED_VISITED_GROUP_ID_RECENT";
47  
48      public static final String PAGE_BOTTOM = "LIFERAY_SHARED_PAGE_BOTTOM";
49  
50      public static final String PAGE_DESCRIPTION = "LIFERAY_SHARED_PAGE_DESCRIPTION";
51  
52      public static final String PAGE_KEYWORDS = "LIFERAY_SHARED_PAGE_KEYWORDS";
53  
54      public static final String PAGE_SUBTITLE = "LIFERAY_SHARED_PAGE_SUBTITLE";
55  
56      public static final String PAGE_TITLE = "LIFERAY_SHARED_PAGE_TITLE";
57  
58      public static final String PAGE_TOP = "LIFERAY_SHARED_PAGE_TOP";
59  
60      public static final String PORTLET_DECORATE = "PORTLET_DECORATE";
61  
62      public static final String PORTLET_ID = "PORTLET_ID";
63  
64      public static final String RENDER_PORTLET = "RENDER_PORTLET";
65  
66      public static final String RENDER_PORTLET_COLUMN_COUNT = "RENDER_PORTLET_COLUMN_COUNT";
67  
68      public static final String RENDER_PORTLET_COLUMN_ID = "RENDER_PORTLET_COLUMN_ID";
69  
70      public static final String RENDER_PORTLET_COLUMN_POS = "RENDER_PORTLET_COLUMN_POS";
71  
72      public static final String RENDER_PORTLET_QUERY_STRING = "RENDER_PORTLET_QUERY_STRING";
73  
74      public static final String RENDER_PORTLET_RESOURCE = "RENDER_PORTLET_RESOURCE";
75  
76      public static final String SEARCH_CONTAINER = "SEARCH_CONTAINER";
77  
78      public static final String SEARCH_CONTAINER_RESULT_ROW = "SEARCH_CONTAINER_RESULT_ROW";
79  
80      public static final String SEARCH_CONTAINER_RESULT_ROW_ENTRY = "SEARCH_CONTAINER_RESULT_ROW_ENTRY";
81  
82      public static final String SEARCH_SEARCH_RESULTS = "SEARCH_SEARCH_RESULTS";
83  
84      public static final String THEME = "THEME";
85  
86      public static final String THEME_DISPLAY = "THEME_DISPLAY";
87  
88      public static final String USER = "USER";
89  
90      public static final String USER_ID = "USER_ID";
91  
92      public static final String USER_PASSWORD = "USER_PASSWORD";
93  
94      public static final String VELOCITY_TAGLIB = "VELOCITY_TAGLIB";
95  
96      public static final String VM_VARIABLES = "VM_VARIABLES";
97  
98      public static final String VISITED_GROUP_ID_PREVIOUS = "LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS";
99  
100     public static final String VISITED_GROUP_ID_RECENT = "LIFERAY_SHARED_VISITED_GROUP_ID_RECENT";
101 
102 }