public enum CleanupUserTypes extends java.lang.Enum<CleanupUserTypes>
Java class for cleanupUserTypes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="cleanupUserTypes">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="true"/>
<enumeration value="false"/>
<enumeration value="none"/>
<enumeration value="invalid"/>
<enumeration value="obsolete"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
FALSE
No special action for users is taken
This value is for legacy reasons.
|
INVALID
Users that are deleted from an external directory will be exported such that they can be deleted in a next step.
|
NONE
No special action for users is taken.
|
OBSOLETE
External Users that have no application role assignment will be exported such that they can be deleted in a next step.
|
TRUE
Users that are deleted from an external directory will be exported such that they can be deleted in a next step.
|
| Modifier and Type | Method and Description |
|---|---|
static CleanupUserTypes |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static CleanupUserTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CleanupUserTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CleanupUserTypes TRUE
public static final CleanupUserTypes FALSE
public static final CleanupUserTypes NONE
public static final CleanupUserTypes INVALID
public static final CleanupUserTypes OBSOLETE
public static CleanupUserTypes[] values()
for (CleanupUserTypes c : CleanupUserTypes.values()) System.out.println(c);
public static CleanupUserTypes 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 value()
public static CleanupUserTypes fromValue(java.lang.String v)