public enum LdapGroupAttribute extends Enum<LdapGroupAttribute>
Enum Constant and Description |
---|
ALIAS
attribute referring to the alias of a
Group |
DESCRIPTION
attribute referring to the discription of a
Group |
MEMBERSHIP
attribute referring to the LDAP attribute holding member/membership information of an
external
Group , e.g. |
NAME
attribute referring to the display name of a
Group |
UID
attribute referring to a permanent unique ID of an external
Group |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
String |
getRequired() |
boolean |
isRequired() |
String |
toString() |
static LdapGroupAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LdapGroupAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LdapGroupAttribute UID
Group
public static final LdapGroupAttribute MEMBERSHIP
Group
, e.g. member, memberOf, uniqueMemberpublic static final LdapGroupAttribute NAME
Group
public static final LdapGroupAttribute ALIAS
Group
public static final LdapGroupAttribute DESCRIPTION
Group
public static LdapGroupAttribute[] values()
for (LdapGroupAttribute c : LdapGroupAttribute.values()) System.out.println(c);
public static LdapGroupAttribute valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getName()
public String getRequired()
true
(in String representation) if this attribute is required.public boolean isRequired()
true
if this attribute is required.public String toString()
toString
in class Enum<LdapGroupAttribute>
Copyright © 2019 Communote team. All rights reserved.