com.liferay.portal.kernel.model.GroupConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.kernel Show documentation
Show all versions of com.liferay.portal.kernel Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.kernel.model;
/**
* @author Brian Wing Shun Chan
*/
public class GroupConstants {
public static final int ANY_PARENT_GROUP_ID = -1;
public static final String CONTROL_PANEL = "Control Panel";
public static final String CONTROL_PANEL_FRIENDLY_URL = "/control_panel";
public static final String DEFAULT = "default";
public static final long DEFAULT_LIVE_GROUP_ID = 0;
public static final int DEFAULT_MEMBERSHIP_RESTRICTION = 0;
public static final long DEFAULT_PARENT_GROUP_ID = 0;
public static final String FORMS = "Forms";
public static final String FORMS_FRIENDLY_URL = "/forms";
public static final String GLOBAL = "Global";
public static final String GLOBAL_FRIENDLY_URL = "/global";
public static final String GUEST = "Guest";
public static final int MEMBERSHIP_RESTRICTION_TO_PARENT_SITE_MEMBERS = 1;
public static final String[] SYSTEM_GROUPS = {
CONTROL_PANEL, FORMS, GUEST, GroupConstants.USER_PERSONAL_SITE
};
public static final String TYPE_SETTINGS_KEY_INHERIT_LOCALES =
"inheritLocales";
public static final int TYPE_SITE_OPEN = 1;
public static final String TYPE_SITE_OPEN_LABEL = "open";
public static final int TYPE_SITE_PRIVATE = 3;
public static final String TYPE_SITE_PRIVATE_LABEL = "private";
public static final int TYPE_SITE_RESTRICTED = 2;
public static final String TYPE_SITE_RESTRICTED_LABEL = "restricted";
public static final int TYPE_SITE_SYSTEM = 4;
public static final String TYPE_SITE_SYSTEM_LABEL = "system";
public static final String USER_PERSONAL_SITE = "User Personal Site";
public static final String USER_PERSONAL_SITE_FRIENDLY_URL =
"/personal_site";
public static String getTypeLabel(int type) {
if (type == TYPE_SITE_OPEN) {
return TYPE_SITE_OPEN_LABEL;
}
else if (type == TYPE_SITE_PRIVATE) {
return TYPE_SITE_PRIVATE_LABEL;
}
else if (type == TYPE_SITE_RESTRICTED) {
return TYPE_SITE_RESTRICTED_LABEL;
}
else {
return TYPE_SITE_SYSTEM_LABEL;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy