Enum CollectSupportDataSecurityLevel
java.lang.Object
java.lang.Enum<CollectSupportDataSecurityLevel>
com.unboundid.ldap.sdk.unboundidds.tasks.CollectSupportDataSecurityLevel
- All Implemented Interfaces:
Serializable,Comparable<CollectSupportDataSecurityLevel>,java.lang.constant.Constable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public enum CollectSupportDataSecurityLevel
extends Enum<CollectSupportDataSecurityLevel>
This enum defines the security level values that may be used in conjunction
with the collect-support-data tool (and the corresponding administrative
task and extended operation).
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe security level that includes everything in theOBSCURE_SECRETSlevel, but takes even more drastic measures to avoid capturing any personally identifiable information, including excluding access logs from the archive and obscuring values in entry DNs and search filters.The security level that indicates that no data should be obscured or redacted.The security level that indicates that secret information (like the values of sensitive configuration properties) should be obscured, and that logs containing user data (like the data recovery log) will be excluded from the support data archive. -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the collect support data security level with the given name.getName()Retrieves the name used to identify this security level.toString()Retrieves a string representation of this collect support data security level.Returns the enum constant of this type with the specified name.static CollectSupportDataSecurityLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NONE
The security level that indicates that no data should be obscured or redacted. -
OBSCURE_SECRETS
The security level that indicates that secret information (like the values of sensitive configuration properties) should be obscured, and that logs containing user data (like the data recovery log) will be excluded from the support data archive. -
MAXIMUM
The security level that includes everything in theOBSCURE_SECRETSlevel, but takes even more drastic measures to avoid capturing any personally identifiable information, including excluding access logs from the archive and obscuring values in entry DNs and search filters.
-
-
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
-
getName
Retrieves the name used to identify this security level.- Returns:
- The name used to identify this security level.
-
forName
Retrieves the collect support data security level with the given name.- Parameters:
name- The name for the collect support data security level to retrieve. It must not benull.- Returns:
- The collect support data security level with the given name, or
nullif there is no security level with the provided name.
-
toString
Retrieves a string representation of this collect support data security level.- Overrides:
toStringin classEnum<CollectSupportDataSecurityLevel>- Returns:
- A string representation of this collect support data security level.
-