001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portal.util;
022:
023: /**
024: * <a href="PortletKeys.java.html"><b><i>View Source</i></b></a>
025: *
026: * @author Brian Wing Shun Chan
027: *
028: */
029: public class PortletKeys {
030:
031: public static final String ADDRESS_BOOK = "10";
032:
033: public static final String ADMIN = "9";
034:
035: public static final String ALFRESCO_CONTENT = "91";
036:
037: public static final String BOOKMARKS = "28";
038:
039: public static final String BLOGS = "33";
040:
041: public static final String CALENDAR = "8";
042:
043: public static final String COMMUNITIES = "29";
044:
045: public static final String DOCUMENT_LIBRARY = "20";
046:
047: public static final String DIRECTORY = "11";
048:
049: public static final String ENTERPRISE_ADMIN = "79";
050:
051: public static final String IMAGE_GALLERY = "31";
052:
053: public static final String INVITATION = "100";
054:
055: public static final String JOURNAL = "15";
056:
057: public static final String JOURNAL_CONTENT = "56";
058:
059: public static final String JOURNAL_CONTENT_SEARCH = "77";
060:
061: public static final String LANGUAGE = "82";
062:
063: public static final String LAYOUT_CONFIGURATION = "87";
064:
065: public static final String LAYOUT_MANAGEMENT = "88";
066:
067: public static final String LIFERAY_PORTAL = "LIFERAY_PORTAL";
068:
069: public static final String LOGIN = "58";
070:
071: public static final String MAIL = "1";
072:
073: public static final String MESSAGE_BOARDS = "19";
074:
075: public static final String MY_ACCOUNT = "2";
076:
077: public static final String MY_PLACES = "49";
078:
079: public static final String NESTED_PORTLETS = "118";
080:
081: public static final String ORGANIZATION_ADMIN = "80";
082:
083: public static final String PAGE_COMMENTS = "107";
084:
085: public static final String PAGE_RATINGS = "108";
086:
087: public static final String PLUGIN_INSTALLER = "111";
088:
089: public static final String POLLS = "25";
090:
091: public static final String PORTAL = "90";
092:
093: public static final String PORTLET_CONFIGURATION = "86";
094:
095: public static final String PORTLET_CSS = "113";
096:
097: public static final long PREFS_OWNER_ID_DEFAULT = 0;
098:
099: public static final int PREFS_OWNER_TYPE_COMPANY = 1;
100:
101: public static final int PREFS_OWNER_TYPE_GROUP = 2;
102:
103: public static final int PREFS_OWNER_TYPE_LAYOUT = 3;
104:
105: public static final int PREFS_OWNER_TYPE_USER = 4;
106:
107: public static final long PREFS_PLID_SHARED = 0;
108:
109: public static final String SEARCH = "3";
110:
111: public static final String SHOPPING = "34";
112:
113: public static final String SOFTWARE_CATALOG = "98";
114:
115: public static final String STOCKS = "12";
116:
117: public static final String TAGS_COMPILER = "103";
118:
119: public static final String UPDATE_MANAGER = "104";
120:
121: public static final String WIKI = "36";
122:
123: public static final String WORKFLOW = "93";
124:
125: }
|