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 SummaryEnum Constants Enum Constant Description REMOTE_CLIENTSubject type for remote client.REMOTE_NODESubject type for a remoteClusterNode.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static @Nullable SecuritySubjectTypefromOrdinal(byte ord)Efficiently gets enumerated value from its ordinal.static SecuritySubjectTypevalueOf(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_NODEpublic static final SecuritySubjectType REMOTE_NODE Subject type for a remoteClusterNode.
 - 
REMOTE_CLIENTpublic static final SecuritySubjectType REMOTE_CLIENT Subject type for remote client.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- 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.
 
 
- 
 
-