![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.bmc.datasafe.model.PPFFormatEntry Maven / Gradle / Ivy
Show all versions of oci-java-sdk-shaded-full Show documentation
/**
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
package com.oracle.bmc.datasafe.model;
/**
* The Post Processing Function masking format is a special masking option that enables you to use a
* custom function to further transform column values after they have been masked using some other
* masking formats. It takes the intermediate masked values as input and returns the final masked
* values. For example, you can use it for adding checksums or special encodings to the masked
* values.
*
* A post-processing function has the same signature as a user-defined function, but it passes in
* the masked values the masking engine generates, and returns the final masked values that should
* be used for masking. To learn more, check Post Processing Function in the Data Safe
* documentation.
* Note: Objects should always be created or deserialized using the {@link Builder}. This model
* distinguishes fields that are {@code null} because they are unset from fields that are explicitly
* set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a
* set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link
* #hashCode()} and {@link #equals(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 {@code null} from unset {@code
* null}).
*/
@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20181201")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = PPFFormatEntry.Builder.class)
@com.fasterxml.jackson.annotation.JsonTypeInfo(
use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME,
include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY,
property = "type")
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class PPFFormatEntry extends FormatEntry {
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
@com.fasterxml.jackson.annotation.JsonProperty("description")
private String description;
public Builder description(String description) {
this.description = description;
this.__explicitlySet__.add("description");
return this;
}
/**
* The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be
* a standalone or packaged function, so PACKAGE_NAME is optional.
*/
@com.fasterxml.jackson.annotation.JsonProperty("postProcessingFunction")
private String postProcessingFunction;
/**
* The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be
* a standalone or packaged function, so PACKAGE_NAME is optional.
*
* @param postProcessingFunction the value to set
* @return this builder
*/
public Builder postProcessingFunction(String postProcessingFunction) {
this.postProcessingFunction = postProcessingFunction;
this.__explicitlySet__.add("postProcessingFunction");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public PPFFormatEntry build() {
PPFFormatEntry model =
new PPFFormatEntry(this.description, this.postProcessingFunction);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(PPFFormatEntry model) {
if (model.wasPropertyExplicitlySet("description")) {
this.description(model.getDescription());
}
if (model.wasPropertyExplicitlySet("postProcessingFunction")) {
this.postProcessingFunction(model.getPostProcessingFunction());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
@Deprecated
public PPFFormatEntry(String description, String postProcessingFunction) {
super(description);
this.postProcessingFunction = postProcessingFunction;
}
/**
* The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a
* standalone or packaged function, so PACKAGE_NAME is optional.
*/
@com.fasterxml.jackson.annotation.JsonProperty("postProcessingFunction")
private final String postProcessingFunction;
/**
* The post processing function in SCHEMA_NAME.PACKAGE_NAME.FUNCTION_NAME format. It can be a
* standalone or packaged function, so PACKAGE_NAME is optional.
*
* @return the value
*/
public String getPostProcessingFunction() {
return postProcessingFunction;
}
@Override
public String toString() {
return this.toString(true);
}
/**
* Return a string representation of the object.
*
* @param includeByteArrayContents true to include the full contents of byte arrays
* @return string representation
*/
public String toString(boolean includeByteArrayContents) {
java.lang.StringBuilder sb = new java.lang.StringBuilder();
sb.append("PPFFormatEntry(");
sb.append("super=").append(super.toString(includeByteArrayContents));
sb.append(", postProcessingFunction=").append(String.valueOf(this.postProcessingFunction));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof PPFFormatEntry)) {
return false;
}
PPFFormatEntry other = (PPFFormatEntry) o;
return java.util.Objects.equals(this.postProcessingFunction, other.postProcessingFunction)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
result =
(result * PRIME)
+ (this.postProcessingFunction == null
? 43
: this.postProcessingFunction.hashCode());
return result;
}
}