public enum PortalSecuritySubjectType extends java.lang.Enum<PortalSecuritySubjectType>
| Enum Constant and Description |
|---|
GROUP
Define support for a user group.
|
USER
Define support for a user.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getXmlAccessName()
Get the XML Access representation/name of the security subject type.
|
static PortalSecuritySubjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PortalSecuritySubjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PortalSecuritySubjectType USER
public static final PortalSecuritySubjectType GROUP
public static PortalSecuritySubjectType[] values()
for (PortalSecuritySubjectType c : PortalSecuritySubjectType.values()) System.out.println(c);
public static PortalSecuritySubjectType 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()