software.amazon.awssdk.services.protocolrestjson.model.MultiLocationOperationRequest Maven / Gradle / Ivy
/*
* Copyright 2013-2018 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.protocolrestjson.model;
import java.time.Instant;
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.awscore.AwsRequestOverrideConfiguration;
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;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class MultiLocationOperationRequest extends ProtocolRestJsonRequest implements
ToCopyableBuilder {
private static final SdkField PATH_PARAM_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(MultiLocationOperationRequest::pathParam)).setter(setter(Builder::pathParam))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("PathParam").build()).build();
private static final SdkField QUERY_PARAM_ONE_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(MultiLocationOperationRequest::queryParamOne)).setter(setter(Builder::queryParamOne))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("QueryParamOne").build()).build();
private static final SdkField QUERY_PARAM_TWO_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(MultiLocationOperationRequest::queryParamTwo)).setter(setter(Builder::queryParamTwo))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("QueryParamTwo").build()).build();
private static final SdkField STRING_HEADER_MEMBER_FIELD = SdkField. builder(MarshallingType.STRING)
.getter(getter(MultiLocationOperationRequest::stringHeaderMember)).setter(setter(Builder::stringHeaderMember))
.traits(LocationTrait.builder().location(MarshallLocation.HEADER).locationName("x-amz-header-string").build())
.build();
private static final SdkField TIMESTAMP_HEADER_MEMBER_FIELD = SdkField. builder(MarshallingType.INSTANT)
.getter(getter(MultiLocationOperationRequest::timestampHeaderMember)).setter(setter(Builder::timestampHeaderMember))
.traits(LocationTrait.builder().location(MarshallLocation.HEADER).locationName("x-amz-timearg").build()).build();
private static final SdkField PAYLOAD_STRUCT_PARAM_FIELD = SdkField
. builder(MarshallingType.SDK_POJO)
.getter(getter(MultiLocationOperationRequest::payloadStructParam)).setter(setter(Builder::payloadStructParam))
.constructor(PayloadStructType::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PayloadStructParam").build())
.build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(PATH_PARAM_FIELD,
QUERY_PARAM_ONE_FIELD, QUERY_PARAM_TWO_FIELD, STRING_HEADER_MEMBER_FIELD, TIMESTAMP_HEADER_MEMBER_FIELD,
PAYLOAD_STRUCT_PARAM_FIELD));
private final String pathParam;
private final String queryParamOne;
private final String queryParamTwo;
private final String stringHeaderMember;
private final Instant timestampHeaderMember;
private final PayloadStructType payloadStructParam;
private MultiLocationOperationRequest(BuilderImpl builder) {
super(builder);
this.pathParam = builder.pathParam;
this.queryParamOne = builder.queryParamOne;
this.queryParamTwo = builder.queryParamTwo;
this.stringHeaderMember = builder.stringHeaderMember;
this.timestampHeaderMember = builder.timestampHeaderMember;
this.payloadStructParam = builder.payloadStructParam;
}
/**
* Returns the value of the PathParam property for this object.
*
* @return The value of the PathParam property for this object.
*/
public String pathParam() {
return pathParam;
}
/**
* Returns the value of the QueryParamOne property for this object.
*
* @return The value of the QueryParamOne property for this object.
*/
public String queryParamOne() {
return queryParamOne;
}
/**
* Returns the value of the QueryParamTwo property for this object.
*
* @return The value of the QueryParamTwo property for this object.
*/
public String queryParamTwo() {
return queryParamTwo;
}
/**
* Returns the value of the StringHeaderMember property for this object.
*
* @return The value of the StringHeaderMember property for this object.
*/
public String stringHeaderMember() {
return stringHeaderMember;
}
/**
* Returns the value of the TimestampHeaderMember property for this object.
*
* @return The value of the TimestampHeaderMember property for this object.
*/
public Instant timestampHeaderMember() {
return timestampHeaderMember;
}
/**
* Returns the value of the PayloadStructParam property for this object.
*
* @return The value of the PayloadStructParam property for this object.
*/
public PayloadStructType payloadStructParam() {
return payloadStructParam;
}
@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(pathParam());
hashCode = 31 * hashCode + Objects.hashCode(queryParamOne());
hashCode = 31 * hashCode + Objects.hashCode(queryParamTwo());
hashCode = 31 * hashCode + Objects.hashCode(stringHeaderMember());
hashCode = 31 * hashCode + Objects.hashCode(timestampHeaderMember());
hashCode = 31 * hashCode + Objects.hashCode(payloadStructParam());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof MultiLocationOperationRequest)) {
return false;
}
MultiLocationOperationRequest other = (MultiLocationOperationRequest) obj;
return Objects.equals(pathParam(), other.pathParam()) && Objects.equals(queryParamOne(), other.queryParamOne())
&& Objects.equals(queryParamTwo(), other.queryParamTwo())
&& Objects.equals(stringHeaderMember(), other.stringHeaderMember())
&& Objects.equals(timestampHeaderMember(), other.timestampHeaderMember())
&& Objects.equals(payloadStructParam(), other.payloadStructParam());
}
@Override
public String toString() {
return ToString.builder("MultiLocationOperationRequest").add("PathParam", pathParam())
.add("QueryParamOne", queryParamOne()).add("QueryParamTwo", queryParamTwo())
.add("StringHeaderMember", stringHeaderMember()).add("TimestampHeaderMember", timestampHeaderMember())
.add("PayloadStructParam", payloadStructParam()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "PathParam":
return Optional.ofNullable(clazz.cast(pathParam()));
case "QueryParamOne":
return Optional.ofNullable(clazz.cast(queryParamOne()));
case "QueryParamTwo":
return Optional.ofNullable(clazz.cast(queryParamTwo()));
case "StringHeaderMember":
return Optional.ofNullable(clazz.cast(stringHeaderMember()));
case "TimestampHeaderMember":
return Optional.ofNullable(clazz.cast(timestampHeaderMember()));
case "PayloadStructParam":
return Optional.ofNullable(clazz.cast(payloadStructParam()));
default:
return Optional.empty();
}
}
@Override
public List> sdkFields() {
return SDK_FIELDS;
}
private static Function