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

software.amazon.awssdk.services.customerprofiles.model.ListProfileObjectsItem Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Customer Profiles module holds the client classes that are used for communicating with Customer Profiles.

There is a newer version: 2.28.3
Show newest version
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */

package software.amazon.awssdk.services.customerprofiles.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* A ProfileObject in a list of ProfileObjects. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ListProfileObjectsItem implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField OBJECT_TYPE_NAME_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("ObjectTypeName").getter(getter(ListProfileObjectsItem::objectTypeName)) .setter(setter(Builder::objectTypeName)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ObjectTypeName").build()).build(); private static final SdkField PROFILE_OBJECT_UNIQUE_KEY_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("ProfileObjectUniqueKey").getter(getter(ListProfileObjectsItem::profileObjectUniqueKey)) .setter(setter(Builder::profileObjectUniqueKey)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ProfileObjectUniqueKey").build()) .build(); private static final SdkField OBJECT_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Object") .getter(getter(ListProfileObjectsItem::object)).setter(setter(Builder::object)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Object").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(OBJECT_TYPE_NAME_FIELD, PROFILE_OBJECT_UNIQUE_KEY_FIELD, OBJECT_FIELD)); private static final long serialVersionUID = 1L; private final String objectTypeName; private final String profileObjectUniqueKey; private final String object; private ListProfileObjectsItem(BuilderImpl builder) { this.objectTypeName = builder.objectTypeName; this.profileObjectUniqueKey = builder.profileObjectUniqueKey; this.object = builder.object; } /** *

* Specifies the kind of object being added to a profile, such as "Salesforce-Account." *

* * @return Specifies the kind of object being added to a profile, such as "Salesforce-Account." */ public final String objectTypeName() { return objectTypeName; } /** *

* The unique identifier of the ProfileObject generated by the service. *

* * @return The unique identifier of the ProfileObject generated by the service. */ public final String profileObjectUniqueKey() { return profileObjectUniqueKey; } /** *

* A JSON representation of a ProfileObject that belongs to a profile. *

* * @return A JSON representation of a ProfileObject that belongs to a profile. */ public final String object() { return object; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(objectTypeName()); hashCode = 31 * hashCode + Objects.hashCode(profileObjectUniqueKey()); hashCode = 31 * hashCode + Objects.hashCode(object()); return hashCode; } @Override public final boolean equals(Object obj) { return equalsBySdkFields(obj); } @Override public final boolean equalsBySdkFields(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof ListProfileObjectsItem)) { return false; } ListProfileObjectsItem other = (ListProfileObjectsItem) obj; return Objects.equals(objectTypeName(), other.objectTypeName()) && Objects.equals(profileObjectUniqueKey(), other.profileObjectUniqueKey()) && Objects.equals(object(), other.object()); } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. */ @Override public final String toString() { return ToString.builder("ListProfileObjectsItem").add("ObjectTypeName", objectTypeName()) .add("ProfileObjectUniqueKey", profileObjectUniqueKey()) .add("Object", object() == null ? null : "*** Sensitive Data Redacted ***").build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "ObjectTypeName": return Optional.ofNullable(clazz.cast(objectTypeName())); case "ProfileObjectUniqueKey": return Optional.ofNullable(clazz.cast(profileObjectUniqueKey())); case "Object": return Optional.ofNullable(clazz.cast(object())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ListProfileObjectsItem) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* Specifies the kind of object being added to a profile, such as "Salesforce-Account." *

* * @param objectTypeName * Specifies the kind of object being added to a profile, such as "Salesforce-Account." * @return Returns a reference to this object so that method calls can be chained together. */ Builder objectTypeName(String objectTypeName); /** *

* The unique identifier of the ProfileObject generated by the service. *

* * @param profileObjectUniqueKey * The unique identifier of the ProfileObject generated by the service. * @return Returns a reference to this object so that method calls can be chained together. */ Builder profileObjectUniqueKey(String profileObjectUniqueKey); /** *

* A JSON representation of a ProfileObject that belongs to a profile. *

* * @param object * A JSON representation of a ProfileObject that belongs to a profile. * @return Returns a reference to this object so that method calls can be chained together. */ Builder object(String object); } static final class BuilderImpl implements Builder { private String objectTypeName; private String profileObjectUniqueKey; private String object; private BuilderImpl() { } private BuilderImpl(ListProfileObjectsItem model) { objectTypeName(model.objectTypeName); profileObjectUniqueKey(model.profileObjectUniqueKey); object(model.object); } public final String getObjectTypeName() { return objectTypeName; } public final void setObjectTypeName(String objectTypeName) { this.objectTypeName = objectTypeName; } @Override public final Builder objectTypeName(String objectTypeName) { this.objectTypeName = objectTypeName; return this; } public final String getProfileObjectUniqueKey() { return profileObjectUniqueKey; } public final void setProfileObjectUniqueKey(String profileObjectUniqueKey) { this.profileObjectUniqueKey = profileObjectUniqueKey; } @Override public final Builder profileObjectUniqueKey(String profileObjectUniqueKey) { this.profileObjectUniqueKey = profileObjectUniqueKey; return this; } public final String getObject() { return object; } public final void setObject(String object) { this.object = object; } @Override public final Builder object(String object) { this.object = object; return this; } @Override public ListProfileObjectsItem build() { return new ListProfileObjectsItem(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy