forked from eclipse-vertx/vertx-sql-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPoolOptionsConverter.java
More file actions
113 lines (106 loc) · 4.12 KB
/
PoolOptionsConverter.java
File metadata and controls
113 lines (106 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package io.vertx.sqlclient;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.core.json.impl.JsonUtil;
import java.time.Instant;
import java.time.format.DateTimeFormatter;
import java.util.Base64;
/**
* Converter and mapper for {@link io.vertx.sqlclient.PoolOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.sqlclient.PoolOptions} original class using Vert.x codegen.
*/
public class PoolOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;
public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, PoolOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "connectionTimeout":
if (member.getValue() instanceof Number) {
obj.setConnectionTimeout(((Number)member.getValue()).intValue());
}
break;
case "connectionTimeoutUnit":
if (member.getValue() instanceof String) {
obj.setConnectionTimeoutUnit(java.util.concurrent.TimeUnit.valueOf((String)member.getValue()));
}
break;
case "eventLoopSize":
if (member.getValue() instanceof Number) {
obj.setEventLoopSize(((Number)member.getValue()).intValue());
}
break;
case "idleTimeout":
if (member.getValue() instanceof Number) {
obj.setIdleTimeout(((Number)member.getValue()).intValue());
}
break;
case "idleTimeoutUnit":
if (member.getValue() instanceof String) {
obj.setIdleTimeoutUnit(java.util.concurrent.TimeUnit.valueOf((String)member.getValue()));
}
break;
case "maxLifetime":
if (member.getValue() instanceof Number) {
obj.setMaxLifetime(((Number)member.getValue()).intValue());
}
break;
case "maxLifetimeUnit":
if (member.getValue() instanceof String) {
obj.setMaxLifetimeUnit(java.util.concurrent.TimeUnit.valueOf((String)member.getValue()));
}
break;
case "maxSize":
if (member.getValue() instanceof Number) {
obj.setMaxSize(((Number)member.getValue()).intValue());
}
break;
case "maxWaitQueueSize":
if (member.getValue() instanceof Number) {
obj.setMaxWaitQueueSize(((Number)member.getValue()).intValue());
}
break;
case "name":
if (member.getValue() instanceof String) {
obj.setName((String)member.getValue());
}
break;
case "poolCleanerPeriod":
if (member.getValue() instanceof Number) {
obj.setPoolCleanerPeriod(((Number)member.getValue()).intValue());
}
break;
case "shared":
if (member.getValue() instanceof Boolean) {
obj.setShared((Boolean)member.getValue());
}
break;
}
}
}
public static void toJson(PoolOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(PoolOptions obj, java.util.Map<String, Object> json) {
json.put("connectionTimeout", obj.getConnectionTimeout());
if (obj.getConnectionTimeoutUnit() != null) {
json.put("connectionTimeoutUnit", obj.getConnectionTimeoutUnit().name());
}
json.put("eventLoopSize", obj.getEventLoopSize());
json.put("idleTimeout", obj.getIdleTimeout());
if (obj.getIdleTimeoutUnit() != null) {
json.put("idleTimeoutUnit", obj.getIdleTimeoutUnit().name());
}
json.put("maxLifetime", obj.getMaxLifetime());
if (obj.getMaxLifetimeUnit() != null) {
json.put("maxLifetimeUnit", obj.getMaxLifetimeUnit().name());
}
json.put("maxSize", obj.getMaxSize());
json.put("maxWaitQueueSize", obj.getMaxWaitQueueSize());
if (obj.getName() != null) {
json.put("name", obj.getName());
}
json.put("poolCleanerPeriod", obj.getPoolCleanerPeriod());
json.put("shared", obj.isShared());
}
}