-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPubSecKeyOptionsConverter.java
85 lines (78 loc) · 2.79 KB
/
PubSecKeyOptionsConverter.java
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
package io.vertx.ext.auth;
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.ext.auth.PubSecKeyOptions}.
* NOTE: This class has been automatically generated from the {@link io.vertx.ext.auth.PubSecKeyOptions} original class using Vert.x codegen.
*/
public class PubSecKeyOptionsConverter {
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, PubSecKeyOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "algorithm":
if (member.getValue() instanceof String) {
obj.setAlgorithm((String)member.getValue());
}
break;
case "buffer":
if (member.getValue() instanceof String) {
obj.setBuffer(io.vertx.core.buffer.Buffer.buffer(BASE64_DECODER.decode((String)member.getValue())));
}
break;
case "certificate":
if (member.getValue() instanceof Boolean) {
obj.setCertificate((Boolean)member.getValue());
}
break;
case "id":
if (member.getValue() instanceof String) {
obj.setId((String)member.getValue());
}
break;
case "publicKey":
if (member.getValue() instanceof String) {
obj.setPublicKey((String)member.getValue());
}
break;
case "secretKey":
if (member.getValue() instanceof String) {
obj.setSecretKey((String)member.getValue());
}
break;
case "symmetric":
if (member.getValue() instanceof Boolean) {
obj.setSymmetric((Boolean)member.getValue());
}
break;
}
}
}
public static void toJson(PubSecKeyOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}
public static void toJson(PubSecKeyOptions obj, java.util.Map<String, Object> json) {
if (obj.getAlgorithm() != null) {
json.put("algorithm", obj.getAlgorithm());
}
if (obj.getBuffer() != null) {
json.put("buffer", BASE64_ENCODER.encodeToString(obj.getBuffer().getBytes()));
}
json.put("certificate", obj.isCertificate());
if (obj.getId() != null) {
json.put("id", obj.getId());
}
if (obj.getPublicKey() != null) {
json.put("publicKey", obj.getPublicKey());
}
if (obj.getSecretKey() != null) {
json.put("secretKey", obj.getSecretKey());
}
json.put("symmetric", obj.isSymmetric());
}
}