001    /**
002     * Copyright (c) 2000-present 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.kernel.servlet.taglib.ui;
016    
017    /**
018     * @author Sergio Gonz??lez
019     */
020    public class FormNavigatorConstants {
021    
022            public static final String CATEGORY_KEY_COMPANY_SETTINGS_CONFIGURATION =
023                    "configuration";
024    
025            public static final String CATEGORY_KEY_COMPANY_SETTINGS_IDENTIFICATION =
026                    "identification";
027    
028            public static final String CATEGORY_KEY_COMPANY_SETTINGS_MISCELLANEOUS =
029                    "miscellaneous";
030    
031            public static final String CATEGORY_KEY_COMPANY_SETTINGS_SOCIAL = "social";
032    
033            public static final String CATEGORY_KEY_ORGANIZATION_IDENTIFICATION =
034                    "identification";
035    
036            public static final String CATEGORY_KEY_ORGANIZATION_MISCELLANEOUS =
037                    "miscellaneous";
038    
039            public static final String
040                    CATEGORY_KEY_ORGANIZATION_ORGANIZATION_INFORMATION =
041                            "organization-information";
042    
043            public static final String CATEGORY_KEY_SITES_ADVANCED = "advanced";
044    
045            public static final String CATEGORY_KEY_SITES_BASIC_INFORMATION =
046                    "basic-information";
047    
048            public static final String CATEGORY_KEY_SITES_MISCELLANEOUS =
049                    "miscellaneous";
050    
051            public static final String CATEGORY_KEY_SITES_SEO =
052                    "search-engine-optimization";
053    
054            public static final String CATEGORY_KEY_SITES_SOCIAL = "social";
055    
056            public static final String CATEGORY_KEY_USER_IDENTIFICATION =
057                    "identification";
058    
059            public static final String CATEGORY_KEY_USER_MISCELLANEOUS =
060                    "miscellaneous";
061    
062            public static final String CATEGORY_KEY_USER_USER_INFORMATION =
063                    "user-information";
064    
065            public static final String FORM_NAVIGATOR_ID_COMPANY_SETTINGS =
066                    "company.settings.form";
067    
068            public static final String FORM_NAVIGATOR_ID_JOURNAL = "journal.form";
069    
070            public static final String FORM_NAVIGATOR_ID_LAYOUT = "layout.form";
071    
072            public static final String FORM_NAVIGATOR_ID_LAYOUT_SET = "layout.set.form";
073    
074            public static final String FORM_NAVIGATOR_ID_ORGANIZATIONS =
075                    "organizations.form";
076    
077            public static final String FORM_NAVIGATOR_ID_SITES = "sites.form";
078    
079            public static final String FORM_NAVIGATOR_ID_USERS = "users.form";
080    
081    }