Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2014-2019 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.pinpoint.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.Consumer;
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;
/**
* Treatment resource
*/
@Generated("software.amazon.awssdk:codegen")
public final class TreatmentResource implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField ID_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(TreatmentResource::id)).setter(setter(Builder::id))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Id").build()).build();
private static final SdkField MESSAGE_CONFIGURATION_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).getter(getter(TreatmentResource::messageConfiguration))
.setter(setter(Builder::messageConfiguration)).constructor(MessageConfiguration::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MessageConfiguration").build())
.build();
private static final SdkField SCHEDULE_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.getter(getter(TreatmentResource::schedule)).setter(setter(Builder::schedule)).constructor(Schedule::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Schedule").build()).build();
private static final SdkField SIZE_PERCENT_FIELD = SdkField. builder(MarshallingType.INTEGER)
.getter(getter(TreatmentResource::sizePercent)).setter(setter(Builder::sizePercent))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SizePercent").build()).build();
private static final SdkField STATE_FIELD = SdkField. builder(MarshallingType.SDK_POJO)
.getter(getter(TreatmentResource::state)).setter(setter(Builder::state)).constructor(CampaignState::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("State").build()).build();
private static final SdkField TREATMENT_DESCRIPTION_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(TreatmentResource::treatmentDescription)).setter(setter(Builder::treatmentDescription))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TreatmentDescription").build())
.build();
private static final SdkField TREATMENT_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(TreatmentResource::treatmentName)).setter(setter(Builder::treatmentName))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TreatmentName").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(ID_FIELD,
MESSAGE_CONFIGURATION_FIELD, SCHEDULE_FIELD, SIZE_PERCENT_FIELD, STATE_FIELD, TREATMENT_DESCRIPTION_FIELD,
TREATMENT_NAME_FIELD));
private static final long serialVersionUID = 1L;
private final String id;
private final MessageConfiguration messageConfiguration;
private final Schedule schedule;
private final Integer sizePercent;
private final CampaignState state;
private final String treatmentDescription;
private final String treatmentName;
private TreatmentResource(BuilderImpl builder) {
this.id = builder.id;
this.messageConfiguration = builder.messageConfiguration;
this.schedule = builder.schedule;
this.sizePercent = builder.sizePercent;
this.state = builder.state;
this.treatmentDescription = builder.treatmentDescription;
this.treatmentName = builder.treatmentName;
}
/**
* The unique treatment ID.
*
* @return The unique treatment ID.
*/
public String id() {
return id;
}
/**
* The message configuration settings.
*
* @return The message configuration settings.
*/
public MessageConfiguration messageConfiguration() {
return messageConfiguration;
}
/**
* The campaign schedule.
*
* @return The campaign schedule.
*/
public Schedule schedule() {
return schedule;
}
/**
* The allocated percentage of users for this treatment.
*
* @return The allocated percentage of users for this treatment.
*/
public Integer sizePercent() {
return sizePercent;
}
/**
* The treatment status.
*
* @return The treatment status.
*/
public CampaignState state() {
return state;
}
/**
* A custom description for the treatment.
*
* @return A custom description for the treatment.
*/
public String treatmentDescription() {
return treatmentDescription;
}
/**
* The custom name of a variation of the campaign used for A/B testing.
*
* @return The custom name of a variation of the campaign used for A/B testing.
*/
public String treatmentName() {
return treatmentName;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(id());
hashCode = 31 * hashCode + Objects.hashCode(messageConfiguration());
hashCode = 31 * hashCode + Objects.hashCode(schedule());
hashCode = 31 * hashCode + Objects.hashCode(sizePercent());
hashCode = 31 * hashCode + Objects.hashCode(state());
hashCode = 31 * hashCode + Objects.hashCode(treatmentDescription());
hashCode = 31 * hashCode + Objects.hashCode(treatmentName());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof TreatmentResource)) {
return false;
}
TreatmentResource other = (TreatmentResource) obj;
return Objects.equals(id(), other.id()) && Objects.equals(messageConfiguration(), other.messageConfiguration())
&& Objects.equals(schedule(), other.schedule()) && Objects.equals(sizePercent(), other.sizePercent())
&& Objects.equals(state(), other.state()) && Objects.equals(treatmentDescription(), other.treatmentDescription())
&& Objects.equals(treatmentName(), other.treatmentName());
}
/**
* 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 String toString() {
return ToString.builder("TreatmentResource").add("Id", id()).add("MessageConfiguration", messageConfiguration())
.add("Schedule", schedule()).add("SizePercent", sizePercent()).add("State", state())
.add("TreatmentDescription", treatmentDescription()).add("TreatmentName", treatmentName()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "Id":
return Optional.ofNullable(clazz.cast(id()));
case "MessageConfiguration":
return Optional.ofNullable(clazz.cast(messageConfiguration()));
case "Schedule":
return Optional.ofNullable(clazz.cast(schedule()));
case "SizePercent":
return Optional.ofNullable(clazz.cast(sizePercent()));
case "State":
return Optional.ofNullable(clazz.cast(state()));
case "TreatmentDescription":
return Optional.ofNullable(clazz.cast(treatmentDescription()));
case "TreatmentName":
return Optional.ofNullable(clazz.cast(treatmentName()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function