Enum PortSelector
- All Implemented Interfaces:
Serializable
,Comparable<PortSelector>
Helps the config parser select only the service ports relevant
to the client's transport security mode (TLS or non-TLS).
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionselectPorts
(Map<String, Integer> serviceNameToPort) static PortSelector
Returns the enum constant of this type with the specified name.static PortSelector[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TLS
-
NON_TLS
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
selectPorts
- Parameters:
serviceNameToPort
- key is service name as it appears in the cluster map JSON, value is associated port
-