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

software.amazon.awssdk.services.protocolrestxml.transform.MembersInQueryParamsRequestMarshaller Maven / Gradle / Ivy

There is a newer version: 2.0.6
Show newest version
/*
 * 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.protocolrestxml.transform;

import java.util.Map;
import javax.annotation.Generated;

import software.amazon.awssdk.core.exception.SdkClientException;
import software.amazon.awssdk.core.Request;
import software.amazon.awssdk.core.DefaultRequest;
import software.amazon.awssdk.core.http.HttpMethodName;
import software.amazon.awssdk.services.protocolrestxml.model.*;
import software.amazon.awssdk.core.runtime.transform.Marshaller;

import software.amazon.awssdk.core.util.StringConversion;

/**
 * MembersInQueryParamsRequest Marshaller
 */

@Generated("software.amazon.awssdk:aws-java-sdk-code-generator")
public class MembersInQueryParamsRequestMarshaller implements
        Marshaller, MembersInQueryParamsRequest> {

    public Request marshall(MembersInQueryParamsRequest membersInQueryParamsRequest) {

        if (membersInQueryParamsRequest == null) {
            throw SdkClientException.builder().message("Invalid argument passed to marshall(...)").build();
        }

        Request request = new DefaultRequest(
                membersInQueryParamsRequest, "ProtocolRestXmlClient");

        request.setHttpMethod(HttpMethodName.POST);

        String uriResourcePath = "/2016-03-11/membersInQueryParams?StaticQueryParam=foo";

        uriResourcePath = software.amazon.awssdk.core.util.UriResourcePathUtils.addStaticQueryParametersToRequest(request,
                uriResourcePath);

        request.setResourcePath(uriResourcePath);

        if (membersInQueryParamsRequest.stringQueryParam() != null) {
            request.addParameter("String", StringConversion.fromString(membersInQueryParamsRequest.stringQueryParam()));
        }

        if (membersInQueryParamsRequest.booleanQueryParam() != null) {
            request.addParameter("Boolean", StringConversion.fromBoolean(membersInQueryParamsRequest.booleanQueryParam()));
        }

        if (membersInQueryParamsRequest.integerQueryParam() != null) {
            request.addParameter("Integer", StringConversion.fromInteger(membersInQueryParamsRequest.integerQueryParam()));
        }

        if (membersInQueryParamsRequest.longQueryParam() != null) {
            request.addParameter("Long", StringConversion.fromLong(membersInQueryParamsRequest.longQueryParam()));
        }

        if (membersInQueryParamsRequest.floatQueryParam() != null) {
            request.addParameter("Float", StringConversion.fromFloat(membersInQueryParamsRequest.floatQueryParam()));
        }

        if (membersInQueryParamsRequest.doubleQueryParam() != null) {
            request.addParameter("Double", StringConversion.fromDouble(membersInQueryParamsRequest.doubleQueryParam()));
        }

        if (membersInQueryParamsRequest.timestampQueryParam() != null) {
            request.addParameter("Timestamp", StringConversion.fromInstant(membersInQueryParamsRequest.timestampQueryParam()));
        }

        if (membersInQueryParamsRequest.listOfStrings() != null && !(membersInQueryParamsRequest.listOfStrings().isEmpty())) {
            for (String value : membersInQueryParamsRequest.listOfStrings()) {
                request.addParameter("item", StringConversion.fromString(value));
            }
        }

        java.util.Map mapOfStringToString = membersInQueryParamsRequest.mapOfStringToString();
        if (mapOfStringToString != null) {
            for (Map.Entry entry : mapOfStringToString.entrySet()) {
                if (entry.getValue() != null) {
                    request.addParameter(StringConversion.fromString(entry.getKey()),
                            StringConversion.fromString(entry.getValue()));
                }
            }
        }

        return request;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy