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 AUTHENTICATION_TOKEN = "LIFERAY_SHARED_AUTHENTICATION_TOKEN";
27  
28      public static final String CLP_MESSAGE_LISTENERS = "CLP_MESSAGE_LISTENERS";
29  
30      public static final String CTX = "CTX";
31  
32      public static final String CURRENT_COMPLETE_URL = "CURRENT_COMPLETE_URL";
33  
34      public static final String CURRENT_URL = "CURRENT_URL";
35  
36      public static final String LAST_PATH = "LAST_PATH";
37  
38      public static final String LAYOUT = "LAYOUT";
39  
40      public static final String LAYOUTS = "LAYOUTS";
41  
42      /**
43       * @deprecated Use <code>VISITED_GROUP_ID_PREVIOUS</code>.
44       */
45      public static final String LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS = "LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS";
46  
47      /**
48       * @deprecated Use <code>VISITED_GROUP_ID_RECENT</code>.
49       */
50      public static final String LIFERAY_SHARED_VISITED_GROUP_ID_RECENT = "LIFERAY_SHARED_VISITED_GROUP_ID_RECENT";
51  
52      public static final String PAGE_BOTTOM = "LIFERAY_SHARED_PAGE_BOTTOM";
53  
54      public static final String PAGE_DESCRIPTION = "LIFERAY_SHARED_PAGE_DESCRIPTION";
55  
56      public static final String PAGE_KEYWORDS = "LIFERAY_SHARED_PAGE_KEYWORDS";
57  
58      public static final String PAGE_SUBTITLE = "LIFERAY_SHARED_PAGE_SUBTITLE";
59  
60      public static final String PAGE_TITLE = "LIFERAY_SHARED_PAGE_TITLE";
61  
62      public static final String PAGE_TOP = "LIFERAY_SHARED_PAGE_TOP";
63  
64      public static final String PORTLET_CONFIGURATOR_VISIBILITY = "PORTLET_CONFIGURATOR_VISIBILITY";
65  
66      public static final String PORTLET_DECORATE = "PORTLET_DECORATE";
67  
68      public static final String PORTLET_ID = "PORTLET_ID";
69  
70      public static final String REDIRECT = "REDIRECT";
71  
72      public static final String RENDER_PORTLET = "RENDER_PORTLET";
73  
74      public static final String RENDER_PORTLET_COLUMN_COUNT = "RENDER_PORTLET_COLUMN_COUNT";
75  
76      public static final String RENDER_PORTLET_COLUMN_ID = "RENDER_PORTLET_COLUMN_ID";
77  
78      public static final String RENDER_PORTLET_COLUMN_POS = "RENDER_PORTLET_COLUMN_POS";
79  
80      public static final String RENDER_PORTLET_QUERY_STRING = "RENDER_PORTLET_QUERY_STRING";
81  
82      public static final String RENDER_PORTLET_RESOURCE = "RENDER_PORTLET_RESOURCE";
83  
84      public static final String SEARCH_CONTAINER = "SEARCH_CONTAINER";
85  
86      public static final String SEARCH_CONTAINER_RESULT_ROW = "SEARCH_CONTAINER_RESULT_ROW";
87  
88      public static final String SEARCH_CONTAINER_RESULT_ROW_ENTRY = "SEARCH_CONTAINER_RESULT_ROW_ENTRY";
89  
90      public static final String SEARCH_SEARCH_RESULTS = "SEARCH_SEARCH_RESULTS";
91  
92      public static final String THEME = "THEME";
93  
94      public static final String THEME_DISPLAY = "THEME_DISPLAY";
95  
96      public static final String USER = "USER";
97  
98      public static final String USER_ID = "USER_ID";
99  
100     public static final String USER_PASSWORD = "USER_PASSWORD";
101 
102     public static final String VELOCITY_TAGLIB = "VELOCITY_TAGLIB";
103 
104     public static final String VM_VARIABLES = "VM_VARIABLES";
105 
106     public static final String VISITED_GROUP_ID_PREVIOUS = "LIFERAY_SHARED_VISITED_GROUP_ID_PREVIOUS";
107 
108     public static final String VISITED_GROUP_ID_RECENT = "LIFERAY_SHARED_VISITED_GROUP_ID_RECENT";
109 
110     public static final String WINDOW_STATE = "WINDOW_STATE";
111 
112 }