/aws-java-sdk-accessanalyzer/src/main/java/com/amazonaws/services/accessanalyzer/model/transform/FindingSummaryJsonUnmarshaller.java

https://github.com/aws/aws-sdk-java · Java · 132 lines · 102 code · 15 blank · 15 comment · 36 complexity · 1cb07092b6ea4d9814ef606e0ea801c1 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.accessanalyzer.model.transform;
  14. import java.math.*;
  15. import javax.annotation.Generated;
  16. import com.amazonaws.services.accessanalyzer.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. * FindingSummary JSON Unmarshaller
  23. */
  24. @Generated("com.amazonaws:aws-java-sdk-code-generator")
  25. public class FindingSummaryJsonUnmarshaller implements Unmarshaller<FindingSummary, JsonUnmarshallerContext> {
  26. public FindingSummary unmarshall(JsonUnmarshallerContext context) throws Exception {
  27. FindingSummary findingSummary = new FindingSummary();
  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("action", targetDepth)) {
  42. context.nextToken();
  43. findingSummary.setAction(new ListUnmarshaller<String>(context.getUnmarshaller(String.class))
  44. .unmarshall(context));
  45. }
  46. if (context.testExpression("analyzedAt", targetDepth)) {
  47. context.nextToken();
  48. findingSummary.setAnalyzedAt(DateJsonUnmarshallerFactory.getInstance("iso8601").unmarshall(context));
  49. }
  50. if (context.testExpression("condition", targetDepth)) {
  51. context.nextToken();
  52. findingSummary.setCondition(new MapUnmarshaller<String, String>(context.getUnmarshaller(String.class), context
  53. .getUnmarshaller(String.class)).unmarshall(context));
  54. }
  55. if (context.testExpression("createdAt", targetDepth)) {
  56. context.nextToken();
  57. findingSummary.setCreatedAt(DateJsonUnmarshallerFactory.getInstance("iso8601").unmarshall(context));
  58. }
  59. if (context.testExpression("error", targetDepth)) {
  60. context.nextToken();
  61. findingSummary.setError(context.getUnmarshaller(String.class).unmarshall(context));
  62. }
  63. if (context.testExpression("id", targetDepth)) {
  64. context.nextToken();
  65. findingSummary.setId(context.getUnmarshaller(String.class).unmarshall(context));
  66. }
  67. if (context.testExpression("isPublic", targetDepth)) {
  68. context.nextToken();
  69. findingSummary.setIsPublic(context.getUnmarshaller(Boolean.class).unmarshall(context));
  70. }
  71. if (context.testExpression("principal", targetDepth)) {
  72. context.nextToken();
  73. findingSummary.setPrincipal(new MapUnmarshaller<String, String>(context.getUnmarshaller(String.class), context
  74. .getUnmarshaller(String.class)).unmarshall(context));
  75. }
  76. if (context.testExpression("resource", targetDepth)) {
  77. context.nextToken();
  78. findingSummary.setResource(context.getUnmarshaller(String.class).unmarshall(context));
  79. }
  80. if (context.testExpression("resourceOwnerAccount", targetDepth)) {
  81. context.nextToken();
  82. findingSummary.setResourceOwnerAccount(context.getUnmarshaller(String.class).unmarshall(context));
  83. }
  84. if (context.testExpression("resourceType", targetDepth)) {
  85. context.nextToken();
  86. findingSummary.setResourceType(context.getUnmarshaller(String.class).unmarshall(context));
  87. }
  88. if (context.testExpression("sources", targetDepth)) {
  89. context.nextToken();
  90. findingSummary.setSources(new ListUnmarshaller<FindingSource>(FindingSourceJsonUnmarshaller.getInstance())
  91. .unmarshall(context));
  92. }
  93. if (context.testExpression("status", targetDepth)) {
  94. context.nextToken();
  95. findingSummary.setStatus(context.getUnmarshaller(String.class).unmarshall(context));
  96. }
  97. if (context.testExpression("updatedAt", targetDepth)) {
  98. context.nextToken();
  99. findingSummary.setUpdatedAt(DateJsonUnmarshallerFactory.getInstance("iso8601").unmarshall(context));
  100. }
  101. } else if (token == END_ARRAY || token == END_OBJECT) {
  102. if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
  103. if (context.getCurrentDepth() <= originalDepth)
  104. break;
  105. }
  106. }
  107. token = context.nextToken();
  108. }
  109. return findingSummary;
  110. }
  111. private static FindingSummaryJsonUnmarshaller instance;
  112. public static FindingSummaryJsonUnmarshaller getInstance() {
  113. if (instance == null)
  114. instance = new FindingSummaryJsonUnmarshaller();
  115. return instance;
  116. }
  117. }