public enum AccessControlMode extends java.lang.Enum<AccessControlMode>
| Enum Constant and Description |
|---|
Disabled
Keine Rechteprüfung (alles Erlaubt)
|
NewDataModel
Neues Datenmodell (
atg.berechtigungsklassen, atg.rollenRegionenPaare usw.) |
OldDataModel
Altes Datenmodell (
atg.benutzerParameter, atg.zugriffsRechte usw.) |
| Modifier and Type | Method and Description |
|---|---|
static AccessControlMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessControlMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccessControlMode Disabled
public static final AccessControlMode OldDataModel
atg.benutzerParameter, atg.zugriffsRechte usw.)public static final AccessControlMode NewDataModel
atg.berechtigungsklassen, atg.rollenRegionenPaare usw.)public static AccessControlMode[] values()
for (AccessControlMode c : AccessControlMode.values()) System.out.println(c);
public static AccessControlMode 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 null