public enum CustomRestrictionPolicyFilterType extends Enum<CustomRestrictionPolicyFilterType>
ACCEPT_WITH_FILTER
.Enum Constant and Description |
---|
MASK_SENSITIVE_FIELDS_IF_ALL_USED
The
MASK_SENSITIVE_FIELDS_IF_ALL_USED filter indicates that all
sensitive fields will be masked if all are used in the query |
MASK_SENSITIVE_FIELDS_IF_ANY_USED
The
MASK_SENSITIVE_FIELDS_IF_ANY_USED filter indicates that all
sensitive fields will be masked if any of them is used in the query |
REJECT_ROW
The
REJECT_ROW filter indicates that all rows will be rejected |
REJECT_ROW_IF_ALL_SENSITIVE_FIELDS_USED
The
REJECT_ROW_IF_ALL_SENSITIVE_FIELDS_USED filter indicates that
all rows will be rejected if all sensitive fields are used in the query |
REJECT_ROW_IF_ANY_SENSITIVE_FIELDS_USED
The
REJECT_ROW_IF_ANY_SENSITIVE_FIELDS_USED filter indicates that
all rows will be rejected if any sensitive field is used in the query |
Modifier and Type | Method and Description |
---|---|
static CustomRestrictionPolicyFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomRestrictionPolicyFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomRestrictionPolicyFilterType REJECT_ROW
REJECT_ROW
filter indicates that all rows will be rejectedpublic static final CustomRestrictionPolicyFilterType REJECT_ROW_IF_ANY_SENSITIVE_FIELDS_USED
REJECT_ROW_IF_ANY_SENSITIVE_FIELDS_USED
filter indicates that
all rows will be rejected if any sensitive field is used in the querypublic static final CustomRestrictionPolicyFilterType REJECT_ROW_IF_ALL_SENSITIVE_FIELDS_USED
REJECT_ROW_IF_ALL_SENSITIVE_FIELDS_USED
filter indicates that
all rows will be rejected if all sensitive fields are used in the querypublic static final CustomRestrictionPolicyFilterType MASK_SENSITIVE_FIELDS_IF_ANY_USED
MASK_SENSITIVE_FIELDS_IF_ANY_USED
filter indicates that all
sensitive fields will be masked if any of them is used in the querypublic static final CustomRestrictionPolicyFilterType MASK_SENSITIVE_FIELDS_IF_ALL_USED
MASK_SENSITIVE_FIELDS_IF_ALL_USED
filter indicates that all
sensitive fields will be masked if all are used in the querypublic static CustomRestrictionPolicyFilterType[] values()
for (CustomRestrictionPolicyFilterType c : CustomRestrictionPolicyFilterType.values()) System.out.println(c);
public static CustomRestrictionPolicyFilterType 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 Denodo Technologies. All rights reserved.