001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * @author Alexander Chow
019     * @author Juan Fern??ndez
020     */
021    public class LayoutTypePortletConstants {
022    
023            public static final String COLUMN_PREFIX = "column-";
024    
025            public static final String DEFAULT_ASSET_PUBLISHER_PORTLET_ID =
026                    "default-asset-publisher-portlet-id";
027    
028            public static final String LAYOUT_TEMPLATE_ID = "layout-template-id";
029    
030            public static final String MODE_ABOUT = "mode-about";
031    
032            public static final String MODE_CONFIG = "mode-config";
033    
034            public static final String MODE_EDIT = "mode-edit";
035    
036            public static final String MODE_EDIT_DEFAULTS = "mode-edit-defaults";
037    
038            public static final String MODE_EDIT_GUEST = "mode-edit-guest";
039    
040            public static final String MODE_HELP = "mode-help";
041    
042            public static final String MODE_PREVIEW = "mode-preview";
043    
044            public static final String MODE_PRINT = "mode-print";
045    
046            public static final String NESTED_COLUMN_IDS = "nested-column-ids";
047    
048            public static final String RUNTIME_COLUMN_IDS = "runtime-column-ids";
049    
050            public static final String RUNTIME_COLUMN_PREFIX = "runtime-column-";
051    
052            public static final String STATE_MAX = "state-max";
053    
054            public static final String STATE_MIN = "state-min";
055    
056            public static final String STATIC_PORTLET_ORGANIZATION_SELECTOR =
057                    "organization";
058    
059            public static final String STATIC_PORTLET_REGULAR_SITE_SELECTOR =
060                    "regular-site";
061    
062            public static final String STATIC_PORTLET_USER_SELECTOR = "user";
063    
064    }