Package lumis.portal.page.acl
Enum PagePermissions
- java.lang.Object
-
- java.lang.Enum<PagePermissions>
-
- lumis.portal.page.acl.PagePermissions
-
- All Implemented Interfaces:
Serializable
,Comparable<PagePermissions>
,IPermission
@StableMinor(version="14.0", sinceVersion="4.0") public enum PagePermissions extends Enum<PagePermissions> implements IPermission
- Since:
- 4.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MANAGE_PAGE
MANAGE_PAGE_LAYOUT
MANAGE_PAGE_SECURITY
PUBLISH_CONTENT
VIEW_PAGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static int[]
getImplies()
static HashMap<Integer,Integer>
getInheritPermissionsMap()
static String
getPermissionsDefinition(Locale locale)
static int
getRequiredPermissions()
String
implies()
int
inheritPermission()
boolean
isRequired()
String
localizedName(Locale locale)
returns the localized name of the permission.int
value()
static PagePermissions
valueOf(String name)
Returns the enum constant of this type with the specified name.static PagePermissions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface lumis.util.security.acl.IPermission
name, ordinal
-
-
-
-
Enum Constant Detail
-
MANAGE_PAGE_SECURITY
public static final PagePermissions MANAGE_PAGE_SECURITY
-
MANAGE_PAGE
public static final PagePermissions MANAGE_PAGE
-
MANAGE_PAGE_LAYOUT
public static final PagePermissions MANAGE_PAGE_LAYOUT
-
VIEW_PAGE
public static final PagePermissions VIEW_PAGE
-
PUBLISH_CONTENT
public static final PagePermissions PUBLISH_CONTENT
-
-
Method Detail
-
values
public static PagePermissions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PagePermissions c : PagePermissions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PagePermissions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
implies
public String implies()
- Specified by:
implies
in interfaceIPermission
- Returns:
-
value
public int value()
- Specified by:
value
in interfaceIPermission
-
isRequired
public boolean isRequired()
- Specified by:
isRequired
in interfaceIPermission
-
localizedName
public String localizedName(Locale locale)
Description copied from interface:IPermission
returns the localized name of the permission.- Specified by:
localizedName
in interfaceIPermission
- Parameters:
locale
- the locale to use for localizing.- Returns:
-
inheritPermission
public int inheritPermission()
-
getImplies
public static int[] getImplies() throws PortalException
- Throws:
PortalException
-
getRequiredPermissions
public static int getRequiredPermissions() throws PortalException
- Throws:
PortalException
-
-