Class DeterministicEncryptionDateFormatEntry
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.datasafe.model.FormatEntry
-
- com.oracle.bmc.datasafe.model.DeterministicEncryptionDateFormatEntry
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20181201") public final class DeterministicEncryptionDateFormatEntry extends FormatEntry
The Deterministic Encryption (Date) masking format encrypts column data using a cryptographic key and Advanced Encryption Standard (AES 128).It can be used to encrypt date columns only. It requires a range of dates as input defined by the startDate and endDate attributes. The start date must be less than or equal to the end date.
The original column values in all the rows must be within the specified date range. The encrypted values are also within the specified range. Therefore, to ensure uniqueness, the total number of dates in the range must be greater than or equal to the number of distinct original values in the column. If an original value is not in the specified date range, it might not produce a one-to-one mapping. All non-confirming values are mapped to a single encrypted value, thereby producing a many-to-one mapping.
Deterministic Encryption (Date) is a format-preserving, deterministic and reversible masking format, which requires a seed value while submitting a masking work request. Passing the same seed value when masking multiple times or masking different databases ensures that the data is masked deterministically. To learn more, check Deterministic Encryption in the Data Safe documentation.
Note: Objects should always be created or deserialized using theDeterministicEncryptionDateFormatEntry.Builder
. This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of theDeterministicEncryptionDateFormatEntry.Builder
, which maintain a set of all explicitly set fields calledDeterministicEncryptionDateFormatEntry.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DeterministicEncryptionDateFormatEntry.Builder
-
Constructor Summary
Constructors Constructor Description DeterministicEncryptionDateFormatEntry(String description, Date startDate, Date endDate)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeterministicEncryptionDateFormatEntry.Builder
builder()
Create a new builder.boolean
equals(Object o)
Date
getEndDate()
The upper bound of the range within which all the original column values fall.Date
getStartDate()
The lower bound of the range within which all the original column values fall.int
hashCode()
DeterministicEncryptionDateFormatEntry.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.-
Methods inherited from class com.oracle.bmc.datasafe.model.FormatEntry
getDescription
-
-
-
-
Constructor Detail
-
DeterministicEncryptionDateFormatEntry
@Deprecated public DeterministicEncryptionDateFormatEntry(String description, Date startDate, Date endDate)
Deprecated.
-
-
Method Detail
-
builder
public static DeterministicEncryptionDateFormatEntry.Builder builder()
Create a new builder.
-
toBuilder
public DeterministicEncryptionDateFormatEntry.Builder toBuilder()
-
getStartDate
public Date getStartDate()
The lower bound of the range within which all the original column values fall.The start date must be less than or equal to the end date.
- Returns:
- the value
-
getEndDate
public Date getEndDate()
The upper bound of the range within which all the original column values fall.The end date must be greater than or equal to the start date.
- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classFormatEntry
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Overrides:
toString
in classFormatEntry
- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classFormatEntry
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classFormatEntry
-
-