Enum SecuritySubjectType
- java.lang.Object
-
- java.lang.Enum<SecuritySubjectType>
-
- org.apache.ignite.plugin.security.SecuritySubjectType
-
- All Implemented Interfaces:
Serializable
,Comparable<SecuritySubjectType>
public enum SecuritySubjectType extends Enum<SecuritySubjectType>
Supported security subject types. Subject type can be retrieved formSecuritySubject.type()
method.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REMOTE_CLIENT
Subject type for remote client.REMOTE_NODE
Subject type for a remoteClusterNode
.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable SecuritySubjectType
fromOrdinal(byte ord)
Efficiently gets enumerated value from its ordinal.static SecuritySubjectType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SecuritySubjectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REMOTE_NODE
public static final SecuritySubjectType REMOTE_NODE
Subject type for a remoteClusterNode
.
-
REMOTE_CLIENT
public static final SecuritySubjectType REMOTE_CLIENT
Subject type for remote client.
-
-
Method Detail
-
values
public static SecuritySubjectType[] 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 (SecuritySubjectType c : SecuritySubjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SecuritySubjectType 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
-
fromOrdinal
@Nullable public static @Nullable SecuritySubjectType fromOrdinal(byte ord)
Efficiently gets enumerated value from its ordinal.- Parameters:
ord
- Ordinal value.- Returns:
- Enumerated value.
-
-