/aws-java-sdk-dms/src/main/java/com/amazonaws/services/databasemigrationservice/model/transform/EndpointJsonUnmarshaller.java

https://github.com/aws/aws-sdk-java · Java · 206 lines · 178 code · 13 blank · 15 comment · 56 complexity · 20fd0dc216abdc1a7f7ce86c5312f8ee 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.databasemigrationservice.model.transform;
  14. import java.math.*;
  15. import javax.annotation.Generated;
  16. import com.amazonaws.services.databasemigrationservice.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. * Endpoint JSON Unmarshaller
  23. */
  24. @Generated("com.amazonaws:aws-java-sdk-code-generator")
  25. public class EndpointJsonUnmarshaller implements Unmarshaller<Endpoint, JsonUnmarshallerContext> {
  26. public Endpoint unmarshall(JsonUnmarshallerContext context) throws Exception {
  27. Endpoint endpoint = new Endpoint();
  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("EndpointIdentifier", targetDepth)) {
  42. context.nextToken();
  43. endpoint.setEndpointIdentifier(context.getUnmarshaller(String.class).unmarshall(context));
  44. }
  45. if (context.testExpression("EndpointType", targetDepth)) {
  46. context.nextToken();
  47. endpoint.setEndpointType(context.getUnmarshaller(String.class).unmarshall(context));
  48. }
  49. if (context.testExpression("EngineName", targetDepth)) {
  50. context.nextToken();
  51. endpoint.setEngineName(context.getUnmarshaller(String.class).unmarshall(context));
  52. }
  53. if (context.testExpression("EngineDisplayName", targetDepth)) {
  54. context.nextToken();
  55. endpoint.setEngineDisplayName(context.getUnmarshaller(String.class).unmarshall(context));
  56. }
  57. if (context.testExpression("Username", targetDepth)) {
  58. context.nextToken();
  59. endpoint.setUsername(context.getUnmarshaller(String.class).unmarshall(context));
  60. }
  61. if (context.testExpression("ServerName", targetDepth)) {
  62. context.nextToken();
  63. endpoint.setServerName(context.getUnmarshaller(String.class).unmarshall(context));
  64. }
  65. if (context.testExpression("Port", targetDepth)) {
  66. context.nextToken();
  67. endpoint.setPort(context.getUnmarshaller(Integer.class).unmarshall(context));
  68. }
  69. if (context.testExpression("DatabaseName", targetDepth)) {
  70. context.nextToken();
  71. endpoint.setDatabaseName(context.getUnmarshaller(String.class).unmarshall(context));
  72. }
  73. if (context.testExpression("ExtraConnectionAttributes", targetDepth)) {
  74. context.nextToken();
  75. endpoint.setExtraConnectionAttributes(context.getUnmarshaller(String.class).unmarshall(context));
  76. }
  77. if (context.testExpression("Status", targetDepth)) {
  78. context.nextToken();
  79. endpoint.setStatus(context.getUnmarshaller(String.class).unmarshall(context));
  80. }
  81. if (context.testExpression("KmsKeyId", targetDepth)) {
  82. context.nextToken();
  83. endpoint.setKmsKeyId(context.getUnmarshaller(String.class).unmarshall(context));
  84. }
  85. if (context.testExpression("EndpointArn", targetDepth)) {
  86. context.nextToken();
  87. endpoint.setEndpointArn(context.getUnmarshaller(String.class).unmarshall(context));
  88. }
  89. if (context.testExpression("CertificateArn", targetDepth)) {
  90. context.nextToken();
  91. endpoint.setCertificateArn(context.getUnmarshaller(String.class).unmarshall(context));
  92. }
  93. if (context.testExpression("SslMode", targetDepth)) {
  94. context.nextToken();
  95. endpoint.setSslMode(context.getUnmarshaller(String.class).unmarshall(context));
  96. }
  97. if (context.testExpression("ServiceAccessRoleArn", targetDepth)) {
  98. context.nextToken();
  99. endpoint.setServiceAccessRoleArn(context.getUnmarshaller(String.class).unmarshall(context));
  100. }
  101. if (context.testExpression("ExternalTableDefinition", targetDepth)) {
  102. context.nextToken();
  103. endpoint.setExternalTableDefinition(context.getUnmarshaller(String.class).unmarshall(context));
  104. }
  105. if (context.testExpression("ExternalId", targetDepth)) {
  106. context.nextToken();
  107. endpoint.setExternalId(context.getUnmarshaller(String.class).unmarshall(context));
  108. }
  109. if (context.testExpression("DynamoDbSettings", targetDepth)) {
  110. context.nextToken();
  111. endpoint.setDynamoDbSettings(DynamoDbSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  112. }
  113. if (context.testExpression("S3Settings", targetDepth)) {
  114. context.nextToken();
  115. endpoint.setS3Settings(S3SettingsJsonUnmarshaller.getInstance().unmarshall(context));
  116. }
  117. if (context.testExpression("DmsTransferSettings", targetDepth)) {
  118. context.nextToken();
  119. endpoint.setDmsTransferSettings(DmsTransferSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  120. }
  121. if (context.testExpression("MongoDbSettings", targetDepth)) {
  122. context.nextToken();
  123. endpoint.setMongoDbSettings(MongoDbSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  124. }
  125. if (context.testExpression("KinesisSettings", targetDepth)) {
  126. context.nextToken();
  127. endpoint.setKinesisSettings(KinesisSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  128. }
  129. if (context.testExpression("KafkaSettings", targetDepth)) {
  130. context.nextToken();
  131. endpoint.setKafkaSettings(KafkaSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  132. }
  133. if (context.testExpression("ElasticsearchSettings", targetDepth)) {
  134. context.nextToken();
  135. endpoint.setElasticsearchSettings(ElasticsearchSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  136. }
  137. if (context.testExpression("NeptuneSettings", targetDepth)) {
  138. context.nextToken();
  139. endpoint.setNeptuneSettings(NeptuneSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  140. }
  141. if (context.testExpression("RedshiftSettings", targetDepth)) {
  142. context.nextToken();
  143. endpoint.setRedshiftSettings(RedshiftSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  144. }
  145. if (context.testExpression("PostgreSQLSettings", targetDepth)) {
  146. context.nextToken();
  147. endpoint.setPostgreSQLSettings(PostgreSQLSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  148. }
  149. if (context.testExpression("MySQLSettings", targetDepth)) {
  150. context.nextToken();
  151. endpoint.setMySQLSettings(MySQLSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  152. }
  153. if (context.testExpression("OracleSettings", targetDepth)) {
  154. context.nextToken();
  155. endpoint.setOracleSettings(OracleSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  156. }
  157. if (context.testExpression("SybaseSettings", targetDepth)) {
  158. context.nextToken();
  159. endpoint.setSybaseSettings(SybaseSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  160. }
  161. if (context.testExpression("MicrosoftSQLServerSettings", targetDepth)) {
  162. context.nextToken();
  163. endpoint.setMicrosoftSQLServerSettings(MicrosoftSQLServerSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  164. }
  165. if (context.testExpression("IBMDb2Settings", targetDepth)) {
  166. context.nextToken();
  167. endpoint.setIBMDb2Settings(IBMDb2SettingsJsonUnmarshaller.getInstance().unmarshall(context));
  168. }
  169. if (context.testExpression("DocDbSettings", targetDepth)) {
  170. context.nextToken();
  171. endpoint.setDocDbSettings(DocDbSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  172. }
  173. if (context.testExpression("RedisSettings", targetDepth)) {
  174. context.nextToken();
  175. endpoint.setRedisSettings(RedisSettingsJsonUnmarshaller.getInstance().unmarshall(context));
  176. }
  177. } else if (token == END_ARRAY || token == END_OBJECT) {
  178. if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
  179. if (context.getCurrentDepth() <= originalDepth)
  180. break;
  181. }
  182. }
  183. token = context.nextToken();
  184. }
  185. return endpoint;
  186. }
  187. private static EndpointJsonUnmarshaller instance;
  188. public static EndpointJsonUnmarshaller getInstance() {
  189. if (instance == null)
  190. instance = new EndpointJsonUnmarshaller();
  191. return instance;
  192. }
  193. }