/aws-java-sdk-quicksight/src/main/java/com/amazonaws/services/quicksight/model/transform/RedshiftParametersJsonUnmarshaller.java

https://github.com/aws/aws-sdk-java · Java · 86 lines · 58 code · 13 blank · 15 comment · 26 complexity · 0f6e0cddcab40a193b3f4b589c4bca74 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.quicksight.model.transform;
  14. import java.math.*;
  15. import javax.annotation.Generated;
  16. import com.amazonaws.services.quicksight.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. * RedshiftParameters JSON Unmarshaller
  23. */
  24. @Generated("com.amazonaws:aws-java-sdk-code-generator")
  25. public class RedshiftParametersJsonUnmarshaller implements Unmarshaller<RedshiftParameters, JsonUnmarshallerContext> {
  26. public RedshiftParameters unmarshall(JsonUnmarshallerContext context) throws Exception {
  27. RedshiftParameters redshiftParameters = new RedshiftParameters();
  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("Host", targetDepth)) {
  42. context.nextToken();
  43. redshiftParameters.setHost(context.getUnmarshaller(String.class).unmarshall(context));
  44. }
  45. if (context.testExpression("Port", targetDepth)) {
  46. context.nextToken();
  47. redshiftParameters.setPort(context.getUnmarshaller(Integer.class).unmarshall(context));
  48. }
  49. if (context.testExpression("Database", targetDepth)) {
  50. context.nextToken();
  51. redshiftParameters.setDatabase(context.getUnmarshaller(String.class).unmarshall(context));
  52. }
  53. if (context.testExpression("ClusterId", targetDepth)) {
  54. context.nextToken();
  55. redshiftParameters.setClusterId(context.getUnmarshaller(String.class).unmarshall(context));
  56. }
  57. } else if (token == END_ARRAY || token == END_OBJECT) {
  58. if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
  59. if (context.getCurrentDepth() <= originalDepth)
  60. break;
  61. }
  62. }
  63. token = context.nextToken();
  64. }
  65. return redshiftParameters;
  66. }
  67. private static RedshiftParametersJsonUnmarshaller instance;
  68. public static RedshiftParametersJsonUnmarshaller getInstance() {
  69. if (instance == null)
  70. instance = new RedshiftParametersJsonUnmarshaller();
  71. return instance;
  72. }
  73. }