public enum PortalSecurityLevel extends java.lang.Enum<PortalSecurityLevel>
| Enum Constant and Description |
|---|
ADMINISTRATOR
Unrestricted access on resources.
|
CONTRIBUTOR
Viewing portal content and creating new resources.
|
DELEGATOR
Assigning the Delegator role to principals (users and groups) allows roles to be granted to them.
|
EDITOR
Creating new resources and configuring existing resources that are used by multiple users.
|
MANAGER
Creating new resources and configuring and deleting existing resources that are used by multiple users.
|
NONE
Cannot interact with resource.
|
PRIVILEGED_USER
Viewing portal content, customizing portlets and pages, and creating new private pages.
|
SECURITY_ADMINISTRATOR
Creating and deleting role assignments on resources.
|
USER
Viewing portal content.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getXmlAccessName()
Get the XML Access representation/name of the security level.
|
static PortalSecurityLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PortalSecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortalSecurityLevel NONE
public static final PortalSecurityLevel USER
public static final PortalSecurityLevel PRIVILEGED_USER
public static final PortalSecurityLevel CONTRIBUTOR
public static final PortalSecurityLevel EDITOR
public static final PortalSecurityLevel MANAGER
public static final PortalSecurityLevel DELEGATOR
public static final PortalSecurityLevel SECURITY_ADMINISTRATOR
public static final PortalSecurityLevel ADMINISTRATOR
public static PortalSecurityLevel[] values()
for (PortalSecurityLevel c : PortalSecurityLevel.values()) System.out.println(c);
public static PortalSecurityLevel valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getXmlAccessName()