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

com.ksc.network.vpc.transform.Nat.DeleteNatRequestMarshaller Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.ksc.network.vpc.transform.Nat;

import com.ksc.DefaultRequest;
import com.ksc.KscClientException;
import com.ksc.Request;
import com.ksc.http.HttpMethodName;
import com.ksc.network.vpc.model.Nat.DeleteNatRequest;
import com.ksc.transform.Marshaller;
import com.ksc.util.StringUtils;

/**
 * DeleteNatRequest Marshaller
 */

public class DeleteNatRequestMarshaller implements
        Marshaller, DeleteNatRequest> {

    public Request marshall(
    		DeleteNatRequest deleteNatRequest) {

        if (deleteNatRequest == null) {
            throw new KscClientException(
                    "Invalid argument passed to marshall(...)");
        }

        Request request = new DefaultRequest(
        		deleteNatRequest, "vpc");
        request.addParameter("Action", "DeleteNat");
        String version = deleteNatRequest.getVersion();
        if (StringUtils.isNullOrEmpty(version)) {
            version = "2016-03-04";
        }
        request.addParameter("Version", version);
        request.setHttpMethod(HttpMethodName.GET);

        if (!StringUtils.isNullOrEmpty(((DeleteNatRequest) deleteNatRequest).getNatId())) {
            request.addParameter("NatId", ((DeleteNatRequest) deleteNatRequest).getNatId());
        }

        return request;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy