forked from gooddata/gooddata-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccount.java
More file actions
210 lines (169 loc) · 5.59 KB
/
Copy pathAccount.java
File metadata and controls
210 lines (169 loc) · 5.59 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/*
* Copyright (C) 2004-2017, GoodData(R) Corporation. All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
package com.gooddata.account;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonView;
import com.gooddata.util.GoodDataToStringBuilder;
import org.springframework.web.util.UriTemplate;
import java.util.List;
/**
* Account setting
*/
@JsonTypeName("accountSetting")
@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Account {
public static final String URI = "/gdc/account/profile/{id}";
public static final String ACCOUNTS_URI = "/gdc/account/domains/{organization_name}/users";
public static final UriTemplate TEMPLATE = new UriTemplate(URI);
public static final UriTemplate ACCOUNTS_TEMPLATE = new UriTemplate(ACCOUNTS_URI);
public static final String LOGIN_URI = "/gdc/account/login/{id}";
public static final UriTemplate LOGIN_TEMPLATE = new UriTemplate(LOGIN_URI);
public static final String CURRENT_ID = "current";
private final String login;
@JsonView(UpdateView.class)
private String email;
@JsonView(UpdateView.class)
private String password;
@JsonView(UpdateView.class)
private String verifyPassword;
@JsonView(UpdateView.class)
private String firstName;
@JsonView(UpdateView.class)
private String lastName;
@JsonView(UpdateView.class)
private List<String> ipWhitelist;
@JsonIgnore
private final Links links;
@JsonCreator
private Account(
@JsonProperty("login") String login,
@JsonProperty("email") String email,
@JsonProperty("password") String password,
@JsonProperty("verifyPassword") String verifyPassword,
@JsonProperty("firstName") String firstName,
@JsonProperty("lastName") String lastName,
@JsonProperty("ipWhitelist") List<String> ipWhitelist,
@JsonProperty("links") Links links
) {
this.login = login;
this.email = email;
this.password = password;
this.verifyPassword = verifyPassword;
this.firstName = firstName;
this.lastName = lastName;
this.ipWhitelist = ipWhitelist;
this.links = links;
}
public Account(String firstName, String lastName, Links links) {
this(null, null, null, null, firstName, lastName, null, links);
}
/**
* Account creation constructor
* @param email email
* @param firstName first name
* @param lastName last name
* @param password password
*/
public Account(String email, String password, String firstName, String lastName) {
this(email, email, password, password, firstName, lastName, null, null);
}
public String getLogin() {
return login;
}
public String getEmail() {
return email;
}
public String getPassword() {
return password;
}
public String getVerifyPassword() {
return verifyPassword;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
@JsonIgnore
public String getUri() {
return links.getSelf();
}
/**
* @return projects URI string
* @deprecated use {@link #getProjectsUri()} instead
*/
@Deprecated
@JsonIgnore
public String getProjectsLink() {
return getProjectsUri();
}
@JsonIgnore
public String getProjectsUri() {
return links.getProjects();
}
@JsonIgnore
public String getId() {
return getId(getUri());
}
public List<String> getIpWhitelist() {
return ipWhitelist;
}
public void setEmail(final String email) {
this.email = email;
}
public void setPassword(final String password) {
this.password = password;
}
public void setVerifyPassword(final String verifyPassword) {
this.verifyPassword = verifyPassword;
}
public void setFirstName(final String firstName) {
this.firstName = firstName;
}
public void setLastName(final String lastName) {
this.lastName = lastName;
}
public void setIpWhitelist(final List<String> ipWhitelist) {
this.ipWhitelist = ipWhitelist;
}
@JsonIgnoreProperties(ignoreUnknown = true)
private static class Links {
private final String self;
private final String projects;
@JsonCreator
public Links(@JsonProperty("self") String self, @JsonProperty("projects") String projects) {
this.self = self;
this.projects = projects;
}
public String getSelf() {
return self;
}
public String getProjects() {
return projects;
}
}
static String getId(String uri) {
return TEMPLATE.match(uri).get("id");
}
@Override
public String toString() {
return GoodDataToStringBuilder.defaultToString(this, "password", "verifyPassword");
}
/**
* Class representing update view of account
*/
static class UpdateView {
}
}