forked from aws-samples/eb-java-scorekeep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserPool.java
More file actions
45 lines (37 loc) · 856 Bytes
/
UserPool.java
File metadata and controls
45 lines (37 loc) · 856 Bytes
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
package scorekeep;
public class UserPool {
private String poolId;
private String clientId;
private String identityPoolId;
private String region;
public UserPool() {
}
public UserPool(String poolId, String clientId) {
this.poolId = poolId;
this.clientId = clientId;
}
public String getPoolId() {
return poolId;
}
public void setPoolId(String poolId) {
this.poolId = poolId;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getIdentityPoolId() {
return identityPoolId;
}
public void setIdentityPoolId(String identityPoolId) {
this.identityPoolId = identityPoolId;
}
public String getRegion() {
return region;
}
public void setRegion(String region) {
this.region = region;
}
}