public enum OnJoinPermissionOperationName extends Enum<OnJoinPermissionOperationName>
SecurityConfig
Enum Constant and Description |
---|
NONE
No-op - neither receives nor sends permissions.
|
RECEIVE
Operation which replaces locally configured permissions by the ones received from cluster.
|
SEND
Operation which refreshes cluster permissions with locally specified ones.
|
Modifier and Type | Method and Description |
---|---|
static OnJoinPermissionOperationName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OnJoinPermissionOperationName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnJoinPermissionOperationName RECEIVE
public static final OnJoinPermissionOperationName SEND
public static final OnJoinPermissionOperationName NONE
public static OnJoinPermissionOperationName[] values()
for (OnJoinPermissionOperationName c : OnJoinPermissionOperationName.values()) System.out.println(c);
public static OnJoinPermissionOperationName valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2023 Hazelcast, Inc.. All rights reserved.