com.amazonaws.services.codegurusecurity.model.transform.FindingMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-codegurusecurity Show documentation
Show all versions of aws-java-sdk-codegurusecurity Show documentation
The AWS Java SDK for Amazon CodeGuru Security module holds the client classes that are used for communicating with Amazon CodeGuru Security Service
/*
* Copyright 2019-2024 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.codegurusecurity.model.transform;
import java.util.List;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.codegurusecurity.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 CREATEDAT_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("createdAt").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo DESCRIPTION_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("description").build();
private static final MarshallingInfo DETECTORID_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("detectorId").build();
private static final MarshallingInfo DETECTORNAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("detectorName").build();
private static final MarshallingInfo DETECTORTAGS_BINDING = MarshallingInfo.builder(MarshallingType.LIST).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("detectorTags").build();
private static final MarshallingInfo GENERATORID_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("generatorId").build();
private static final MarshallingInfo ID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("id").build();
private static final MarshallingInfo REMEDIATION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("remediation").build();
private static final MarshallingInfo RESOURCE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("resource").build();
private static final MarshallingInfo RULEID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("ruleId").build();
private static final MarshallingInfo SEVERITY_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("severity").build();
private static final MarshallingInfo STATUS_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("status").build();
private static final MarshallingInfo TITLE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("title").build();
private static final MarshallingInfo TYPE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("type").build();
private static final MarshallingInfo UPDATEDAT_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("updatedAt").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo VULNERABILITY_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("vulnerability").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.getCreatedAt(), CREATEDAT_BINDING);
protocolMarshaller.marshall(finding.getDescription(), DESCRIPTION_BINDING);
protocolMarshaller.marshall(finding.getDetectorId(), DETECTORID_BINDING);
protocolMarshaller.marshall(finding.getDetectorName(), DETECTORNAME_BINDING);
protocolMarshaller.marshall(finding.getDetectorTags(), DETECTORTAGS_BINDING);
protocolMarshaller.marshall(finding.getGeneratorId(), GENERATORID_BINDING);
protocolMarshaller.marshall(finding.getId(), ID_BINDING);
protocolMarshaller.marshall(finding.getRemediation(), REMEDIATION_BINDING);
protocolMarshaller.marshall(finding.getResource(), RESOURCE_BINDING);
protocolMarshaller.marshall(finding.getRuleId(), RULEID_BINDING);
protocolMarshaller.marshall(finding.getSeverity(), SEVERITY_BINDING);
protocolMarshaller.marshall(finding.getStatus(), STATUS_BINDING);
protocolMarshaller.marshall(finding.getTitle(), TITLE_BINDING);
protocolMarshaller.marshall(finding.getType(), TYPE_BINDING);
protocolMarshaller.marshall(finding.getUpdatedAt(), UPDATEDAT_BINDING);
protocolMarshaller.marshall(finding.getVulnerability(), VULNERABILITY_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}