Package org.apache.storm.security.auth
Enum ThriftConnectionType
- java.lang.Object
-
- java.lang.Enum<ThriftConnectionType>
-
- org.apache.storm.security.auth.ThriftConnectionType
-
- All Implemented Interfaces:
Serializable
,Comparable<ThriftConnectionType>
public enum ThriftConnectionType extends Enum<ThriftConnectionType>
The purpose for which the Thrift server is created.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DRPC
DRPC_INVOCATIONS
LOCAL_FAKE
NIMBUS
NIMBUS_TLS
SUPERVISOR
SUPERVISOR_TLS
-
Method Summary
-
-
-
Enum Constant Detail
-
NIMBUS
public static final ThriftConnectionType NIMBUS
-
NIMBUS_TLS
public static final ThriftConnectionType NIMBUS_TLS
-
SUPERVISOR
public static final ThriftConnectionType SUPERVISOR
-
SUPERVISOR_TLS
public static final ThriftConnectionType SUPERVISOR_TLS
-
DRPC
public static final ThriftConnectionType DRPC
-
DRPC_INVOCATIONS
public static final ThriftConnectionType DRPC_INVOCATIONS
-
LOCAL_FAKE
public static final ThriftConnectionType LOCAL_FAKE
-
-
Method Detail
-
values
public static ThriftConnectionType[] 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 (ThriftConnectionType c : ThriftConnectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThriftConnectionType 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
-
isFake
public boolean isFake()
-
getWtType
public WorkerTokenServiceType getWtType()
Get the corresponding worker token type for this thrift connection.
-
isImpersonationAllowed
public boolean isImpersonationAllowed()
Check if SASL impersonation is allowed for this transport type.- Returns:
- true if it is else false.
-
isTlsEnabled
public boolean isTlsEnabled()
-
-