Package org.cyclos.model.access
Enum AccessSubmodule
- java.lang.Object
-
- java.lang.Enum<AccessSubmodule>
-
- org.cyclos.model.access.AccessSubmodule
-
- All Implemented Interfaces:
Serializable,Comparable<AccessSubmodule>,PrefixedEnum,Submodule
public enum AccessSubmodule extends Enum<AccessSubmodule> implements Submodule
Submodules for theACCESSmodule
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGREEMENT_LOGSAGREEMENTSCHANNELSCLIENTSDEVICESIDENTITY_PROVIDERSLOGINOIDC_AUTHORIZATIONSOIDC_CLIENTSOIDC_CONSENTPASSWORD_TYPESPASSWORDSPINSPRINCIPAL_TYPESTOKENSUSER_CHANNELSUSER_IDENTITY_PROVIDERS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Modulemodule()Returns the module for this submodulestatic AccessSubmodulevalueOf(String name)Returns the enum constant of this type with the specified name.static AccessSubmodule[]values()Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.cyclos.utils.PrefixedEnum
name
-
-
-
-
Enum Constant Detail
-
CHANNELS
public static final AccessSubmodule CHANNELS
-
USER_CHANNELS
public static final AccessSubmodule USER_CHANNELS
-
LOGIN
public static final AccessSubmodule LOGIN
-
PRINCIPAL_TYPES
public static final AccessSubmodule PRINCIPAL_TYPES
-
PASSWORDS
public static final AccessSubmodule PASSWORDS
-
PASSWORD_TYPES
public static final AccessSubmodule PASSWORD_TYPES
-
AGREEMENTS
public static final AccessSubmodule AGREEMENTS
-
AGREEMENT_LOGS
public static final AccessSubmodule AGREEMENT_LOGS
-
TOKENS
public static final AccessSubmodule TOKENS
-
CLIENTS
public static final AccessSubmodule CLIENTS
-
IDENTITY_PROVIDERS
public static final AccessSubmodule IDENTITY_PROVIDERS
-
USER_IDENTITY_PROVIDERS
public static final AccessSubmodule USER_IDENTITY_PROVIDERS
-
OIDC_CLIENTS
public static final AccessSubmodule OIDC_CLIENTS
-
OIDC_CONSENT
public static final AccessSubmodule OIDC_CONSENT
-
OIDC_AUTHORIZATIONS
public static final AccessSubmodule OIDC_AUTHORIZATIONS
-
DEVICES
public static final AccessSubmodule DEVICES
-
PINS
public static final AccessSubmodule PINS
-
-
Method Detail
-
values
public static AccessSubmodule[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AccessSubmodule c : AccessSubmodule.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessSubmodule valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-