/* * Copyright 2012-2017 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 com.amazonaws.services.inspector.model.transform; import java.util.List; import javax.annotation.Generated; import com.amazonaws.SdkClientException; import com.amazonaws.services.inspector.model.*; import com.amazonaws.protocol.*; import com.amazonaws.annotation.SdkInternalApi; /** * FindingMarshaller */ @Generated("com.amazonaws:aws-java-sdk-code-generator") @SdkInternalApi public class FindingMarshaller { private static final MarshallingInfo<String> ARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("arn").build(); private static final MarshallingInfo<Integer> SCHEMAVERSION_BINDING = MarshallingInfo.builder(MarshallingType.INTEGER) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("schemaVersion").build(); private static final MarshallingInfo<String> SERVICE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("service").build(); private static final MarshallingInfo<StructuredPojo> SERVICEATTRIBUTES_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("serviceAttributes").build(); private static final MarshallingInfo<String> ASSETTYPE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("assetType").build(); private static final MarshallingInfo<StructuredPojo> ASSETATTRIBUTES_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("assetAttributes").build(); private static final MarshallingInfo<String> ID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("id").build(); private static final MarshallingInfo<String> TITLE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("title").build(); private static final MarshallingInfo<String> DESCRIPTION_BINDING = MarshallingInfo.builder(MarshallingType.STRING) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("description").build(); private static final MarshallingInfo<String> RECOMMENDATION_BINDING = MarshallingInfo.builder(MarshallingType.STRING) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("recommendation").build(); private static final MarshallingInfo<String> SEVERITY_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("severity").build(); private static final MarshallingInfo<Double> NUMERICSEVERITY_BINDING = MarshallingInfo.builder(MarshallingType.DOUBLE) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("numericSeverity").build(); private static final MarshallingInfo<Integer> CONFIDENCE_BINDING = MarshallingInfo.builder(MarshallingType.INTEGER) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("confidence").build(); private static final MarshallingInfo<Boolean> INDICATOROFCOMPROMISE_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("indicatorOfCompromise").build(); private static final MarshallingInfo<List> ATTRIBUTES_BINDING = MarshallingInfo.builder(MarshallingType.LIST).marshallLocation(MarshallLocation.PAYLOAD) .marshallLocationName("attributes").build(); private static final MarshallingInfo<List> USERATTRIBUTES_BINDING = MarshallingInfo.builder(MarshallingType.LIST) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("userAttributes").build(); private static final MarshallingInfo<java.util.Date> CREATEDAT_BINDING = MarshallingInfo.builder(MarshallingType.DATE) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("createdAt").build(); private static final MarshallingInfo<java.util.Date> UPDATEDAT_BINDING = MarshallingInfo.builder(MarshallingType.DATE) .marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("updatedAt").build(); private static final FindingMarshaller instance = new FindingMarshaller(); public static FindingMarshaller getInstance() { return instance; } /** * Marshall the given parameter object. */ public void marshall(Finding finding, ProtocolMarshaller protocolMarshaller) { if (finding == null) { throw new SdkClientException("Invalid argument passed to marshall(...)"); } try { protocolMarshaller.marshall(finding.getArn(), ARN_BINDING); protocolMarshaller.marshall(finding.getSchemaVersion(), SCHEMAVERSION_BINDING); protocolMarshaller.marshall(finding.getService(), SERVICE_BINDING); protocolMarshaller.marshall(finding.getServiceAttributes(), SERVICEATTRIBUTES_BINDING); protocolMarshaller.marshall(finding.getAssetType(), ASSETTYPE_BINDING); protocolMarshaller.marshall(finding.getAssetAttributes(), ASSETATTRIBUTES_BINDING); protocolMarshaller.marshall(finding.getId(), ID_BINDING); protocolMarshaller.marshall(finding.getTitle(), TITLE_BINDING); protocolMarshaller.marshall(finding.getDescription(), DESCRIPTION_BINDING); protocolMarshaller.marshall(finding.getRecommendation(), RECOMMENDATION_BINDING); protocolMarshaller.marshall(finding.getSeverity(), SEVERITY_BINDING); protocolMarshaller.marshall(finding.getNumericSeverity(), NUMERICSEVERITY_BINDING); protocolMarshaller.marshall(finding.getConfidence(), CONFIDENCE_BINDING); protocolMarshaller.marshall(finding.getIndicatorOfCompromise(), INDICATOROFCOMPROMISE_BINDING); protocolMarshaller.marshall(finding.getAttributes(), ATTRIBUTES_BINDING); protocolMarshaller.marshall(finding.getUserAttributes(), USERATTRIBUTES_BINDING); protocolMarshaller.marshall(finding.getCreatedAt(), CREATEDAT_BINDING); protocolMarshaller.marshall(finding.getUpdatedAt(), UPDATEDAT_BINDING); } catch (Exception e) { throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e); } } }