public enum SecurityLabel extends java.lang.Enum<SecurityLabel>
Trace files are transferable from customer systems to Oracle network. Therefore, there is chance of leakage of sensitive information. Customer have concerns with their private information leaking through diagnostics.
The mitigation is by classifying trace content and specifying governance and data-use policies.
Enum Constant and Description |
---|
ALGORITHM
Written by customers that don't contain data
|
CONFIG
Host Names, IP Addresses, Directory Info, Config Usernames
|
DATA
User Data, Block dumps
|
INTERNAL
Internal to Oracle code or running instance
|
KEYS
Encryption keys, passwords
|
METADATA
Table names, index names, user program names
|
PROGRAM
Written by customers may contain user data, SQL statements
|
SLIGHT_DATA
Slight amounts of User Data
|
STATIC
Fixed string with no args
|
UNKNOWN
Unknown content
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
char |
getLabel() |
java.lang.String |
getLabelName() |
static SecurityLabel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SecurityLabel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityLabel KEYS
public static final SecurityLabel DATA
public static final SecurityLabel UNKNOWN
public static final SecurityLabel SLIGHT_DATA
public static final SecurityLabel PROGRAM
public static final SecurityLabel ALGORITHM
public static final SecurityLabel CONFIG
public static final SecurityLabel METADATA
public static final SecurityLabel INTERNAL
public static final SecurityLabel STATIC
public static SecurityLabel[] values()
for (SecurityLabel c : SecurityLabel.values()) System.out.println(c);
public static SecurityLabel valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic char getLabel()
public java.lang.String getLabelName()
public java.lang.String getDescription()