-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathJwk.java
67 lines (52 loc) · 1.11 KB
/
Jwk.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
package utilities.flex.models.transientToken;
import javax.annotation.Generated;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
@Generated("jsonschema2pojo")
public class Jwk {
@SerializedName("kty")
@Expose
private String kty;
@SerializedName("e")
@Expose
private String e;
@SerializedName("use")
@Expose
private String use;
@SerializedName("n")
@Expose
private String n;
@SerializedName("kid")
@Expose
private String kid;
public String getKty() {
return kty;
}
public void setKty(String kty) {
this.kty = kty;
}
public String getE() {
return e;
}
public void setE(String e) {
this.e = e;
}
public String getUse() {
return use;
}
public void setUse(String use) {
this.use = use;
}
public String getN() {
return n;
}
public void setN(String n) {
this.n = n;
}
public String getKid() {
return kid;
}
public void setKid(String kid) {
this.kid = kid;
}
}