Enum-Klasse UserAccountType

java.lang.Object
java.lang.Enum<UserAccountType>
com.inet.usersandgroups.api.user.UserAccountType
Alle implementierten Schnittstellen:
Serializable, Comparable<UserAccountType>, Constable

public enum UserAccountType extends Enum<UserAccountType>
The account type determine some possible features of a user and/or login.
  • Enum-Konstanten - Details

    • Administrator

      public static final UserAccountType Administrator
      The master user, has all rights, also with the hosting plugin.
    • Guest

      public static final UserAccountType Guest
      Shared user for anonymous use if Guest Login Provider is configured. Member of 'All Users' group. Can't edit its own name and logo. Visible in user manager and maintenance. Login occur via URL prefix /public.
    • Standard

      public static final UserAccountType Standard
      The normal users. Counted for license.
    • Temp

      public static final UserAccountType Temp
      No login is possible. Creation only via API. Will be deleted if all of its HTTP sessions closed. Is NOT a member of 'All Users' group. All rights must be set explicit via API on creation. Can change its own name and logo. Is not shown in the user manager and maintenance.
  • Methodendetails

    • values

      public static UserAccountType[] values()
      Gibt ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration zurück.
      Gibt zurück:
      ein Array mit den Konstanten dieser Enum-Klasse in der Reihenfolge ihrer Deklaration
    • valueOf

      public static UserAccountType valueOf(String name)
      Gibt die Enum-Konstante dieser Klasse mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enum-Konstante in dieser Klasse deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)
      Parameter:
      name - Name der zurückzugebenden Enumerationskonstante.
      Gibt zurück:
      Enumerationskonstante mit dem angegebenen Namen
      Löst aus:
      IllegalArgumentException - wenn diese Enum-Klasse keine Konstante mit dem angegebenen Namen enthält
      NullPointerException - wenn das Argument nicht angegeben wird
    • getDisplayName

      public String getDisplayName()
      Returns the localized display name of the user account type.
      Gibt zurück:
      the localized display name of the user account type.
      Seit:
      inetcore 4.0
    • getCreateLabel

      public String getCreateLabel()
      Returns localized label for adding a new user of this type.
      Gibt zurück:
      localized label for adding a new user of this type.
      Seit:
      inetcore 4.0
    • getDescription

      public String getDescription()
      Returns localized description for the user account type.
      Gibt zurück:
      localized description for the user account type. Can be null
      Seit:
      inetcore 4.0