/aws-java-sdk-auditmanager/src/main/java/com/amazonaws/services/auditmanager/model/transform/ControlMappingSourceJsonUnmarshaller.java

https://github.com/aws/aws-sdk-java · Java · 102 lines · 74 code · 13 blank · 15 comment · 30 complexity · 6531aa3c572d898cd5435dbb0f91ed8e MD5 · raw file

  1. /*
  2. * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
  5. * the License. A copy of the License is located at
  6. *
  7. * http://aws.amazon.com/apache2.0
  8. *
  9. * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  10. * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
  11. * and limitations under the License.
  12. */
  13. package com.amazonaws.services.auditmanager.model.transform;
  14. import java.math.*;
  15. import javax.annotation.Generated;
  16. import com.amazonaws.services.auditmanager.model.*;
  17. import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
  18. import com.amazonaws.transform.*;
  19. import com.fasterxml.jackson.core.JsonToken;
  20. import static com.fasterxml.jackson.core.JsonToken.*;
  21. /**
  22. * ControlMappingSource JSON Unmarshaller
  23. */
  24. @Generated("com.amazonaws:aws-java-sdk-code-generator")
  25. public class ControlMappingSourceJsonUnmarshaller implements Unmarshaller<ControlMappingSource, JsonUnmarshallerContext> {
  26. public ControlMappingSource unmarshall(JsonUnmarshallerContext context) throws Exception {
  27. ControlMappingSource controlMappingSource = new ControlMappingSource();
  28. int originalDepth = context.getCurrentDepth();
  29. String currentParentElement = context.getCurrentParentElement();
  30. int targetDepth = originalDepth + 1;
  31. JsonToken token = context.getCurrentToken();
  32. if (token == null)
  33. token = context.nextToken();
  34. if (token == VALUE_NULL) {
  35. return null;
  36. }
  37. while (true) {
  38. if (token == null)
  39. break;
  40. if (token == FIELD_NAME || token == START_OBJECT) {
  41. if (context.testExpression("sourceId", targetDepth)) {
  42. context.nextToken();
  43. controlMappingSource.setSourceId(context.getUnmarshaller(String.class).unmarshall(context));
  44. }
  45. if (context.testExpression("sourceName", targetDepth)) {
  46. context.nextToken();
  47. controlMappingSource.setSourceName(context.getUnmarshaller(String.class).unmarshall(context));
  48. }
  49. if (context.testExpression("sourceDescription", targetDepth)) {
  50. context.nextToken();
  51. controlMappingSource.setSourceDescription(context.getUnmarshaller(String.class).unmarshall(context));
  52. }
  53. if (context.testExpression("sourceSetUpOption", targetDepth)) {
  54. context.nextToken();
  55. controlMappingSource.setSourceSetUpOption(context.getUnmarshaller(String.class).unmarshall(context));
  56. }
  57. if (context.testExpression("sourceType", targetDepth)) {
  58. context.nextToken();
  59. controlMappingSource.setSourceType(context.getUnmarshaller(String.class).unmarshall(context));
  60. }
  61. if (context.testExpression("sourceKeyword", targetDepth)) {
  62. context.nextToken();
  63. controlMappingSource.setSourceKeyword(SourceKeywordJsonUnmarshaller.getInstance().unmarshall(context));
  64. }
  65. if (context.testExpression("sourceFrequency", targetDepth)) {
  66. context.nextToken();
  67. controlMappingSource.setSourceFrequency(context.getUnmarshaller(String.class).unmarshall(context));
  68. }
  69. if (context.testExpression("troubleshootingText", targetDepth)) {
  70. context.nextToken();
  71. controlMappingSource.setTroubleshootingText(context.getUnmarshaller(String.class).unmarshall(context));
  72. }
  73. } else if (token == END_ARRAY || token == END_OBJECT) {
  74. if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
  75. if (context.getCurrentDepth() <= originalDepth)
  76. break;
  77. }
  78. }
  79. token = context.nextToken();
  80. }
  81. return controlMappingSource;
  82. }
  83. private static ControlMappingSourceJsonUnmarshaller instance;
  84. public static ControlMappingSourceJsonUnmarshaller getInstance() {
  85. if (instance == null)
  86. instance = new ControlMappingSourceJsonUnmarshaller();
  87. return instance;
  88. }
  89. }