All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.dataintegration.model.UpdateReferenceDetails Maven / Gradle / Ivy

There is a newer version: 3.46.1
Show newest version
/**
 * Copyright (c) 2016, 2023, 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.dataintegration.model;

/**
 * Application references that need to be updated.
 * 
* 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 #__explicitlySet__}. The {@link #hashCode()} and {@link #equals(Object)} methods are implemented to take * {@link #__explicitlySet__} into account. The constructor, on the other hand, does not set {@link #__explicitlySet__} * (since the constructor cannot distinguish explicit {@code null} from unset {@code null}). **/ @javax.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20200430") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = UpdateReferenceDetails.Builder.class ) @com.fasterxml.jackson.annotation.JsonFilter(com.oracle.bmc.http.internal.ExplicitlySetFilter.NAME) public final class UpdateReferenceDetails extends com.oracle.bmc.http.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({"options", "targetObject", "childReferences"}) public UpdateReferenceDetails( java.util.Map options, Object targetObject, java.util.List childReferences) { super(); this.options = options; this.targetObject = targetObject; this.childReferences = childReferences; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** * A list of options such as {@code ignoreObjectOnError}. **/ @com.fasterxml.jackson.annotation.JsonProperty("options") private java.util.Map options; /** * A list of options such as {@code ignoreObjectOnError}. * @param options the value to set * @return this builder **/ public Builder options(java.util.Map options) { this.options = options; this.__explicitlySet__.add("options"); return this; } /** * The new target object to reference. This can be of type {@code DataAsset}, {@code Schema} or {@code Task}. In case of {@code DataAsset}, the child references can be of type {@code Connection}. **/ @com.fasterxml.jackson.annotation.JsonProperty("targetObject") private Object targetObject; /** * The new target object to reference. This can be of type {@code DataAsset}, {@code Schema} or {@code Task}. In case of {@code DataAsset}, the child references can be of type {@code Connection}. * @param targetObject the value to set * @return this builder **/ public Builder targetObject(Object targetObject) { this.targetObject = targetObject; this.__explicitlySet__.add("targetObject"); return this; } /** * The list of child references that also need to be updated. **/ @com.fasterxml.jackson.annotation.JsonProperty("childReferences") private java.util.List childReferences; /** * The list of child references that also need to be updated. * @param childReferences the value to set * @return this builder **/ public Builder childReferences(java.util.List childReferences) { this.childReferences = childReferences; this.__explicitlySet__.add("childReferences"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public UpdateReferenceDetails build() { UpdateReferenceDetails model = new UpdateReferenceDetails( this.options, this.targetObject, this.childReferences); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(UpdateReferenceDetails model) { if (model.wasPropertyExplicitlySet("options")) { this.options(model.getOptions()); } if (model.wasPropertyExplicitlySet("targetObject")) { this.targetObject(model.getTargetObject()); } if (model.wasPropertyExplicitlySet("childReferences")) { this.childReferences(model.getChildReferences()); } return this; } } /** * Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** * A list of options such as {@code ignoreObjectOnError}. **/ @com.fasterxml.jackson.annotation.JsonProperty("options") private final java.util.Map options; /** * A list of options such as {@code ignoreObjectOnError}. * @return the value **/ public java.util.Map getOptions() { return options; } /** * The new target object to reference. This can be of type {@code DataAsset}, {@code Schema} or {@code Task}. In case of {@code DataAsset}, the child references can be of type {@code Connection}. **/ @com.fasterxml.jackson.annotation.JsonProperty("targetObject") private final Object targetObject; /** * The new target object to reference. This can be of type {@code DataAsset}, {@code Schema} or {@code Task}. In case of {@code DataAsset}, the child references can be of type {@code Connection}. * @return the value **/ public Object getTargetObject() { return targetObject; } /** * The list of child references that also need to be updated. **/ @com.fasterxml.jackson.annotation.JsonProperty("childReferences") private final java.util.List childReferences; /** * The list of child references that also need to be updated. * @return the value **/ public java.util.List getChildReferences() { return childReferences; } @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("UpdateReferenceDetails("); sb.append("super=").append(super.toString()); sb.append("options=").append(String.valueOf(this.options)); sb.append(", targetObject=").append(String.valueOf(this.targetObject)); sb.append(", childReferences=").append(String.valueOf(this.childReferences)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof UpdateReferenceDetails)) { return false; } UpdateReferenceDetails other = (UpdateReferenceDetails) o; return java.util.Objects.equals(this.options, other.options) && java.util.Objects.equals(this.targetObject, other.targetObject) && java.util.Objects.equals(this.childReferences, other.childReferences) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.options == null ? 43 : this.options.hashCode()); result = (result * PRIME) + (this.targetObject == null ? 43 : this.targetObject.hashCode()); result = (result * PRIME) + (this.childReferences == null ? 43 : this.childReferences.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy