-
Notifications
You must be signed in to change notification settings - Fork 495
Expand file tree
/
Copy pathImpersonationToken.java
More file actions
197 lines (147 loc) · 4.71 KB
/
ImpersonationToken.java
File metadata and controls
197 lines (147 loc) · 4.71 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
package org.gitlab4j.api.models;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import org.gitlab4j.models.utils.JacksonJson;
import org.gitlab4j.models.utils.JacksonJsonEnumHelper;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
public class ImpersonationToken implements Serializable {
private static final long serialVersionUID = 1L;
/** Enum to specify the scope of an ImpersonationToken. */
public enum Scope {
/** Grants complete read/write access to the API. */
API,
/** Grants read access to the API. */
READ_API,
/** Grants read-only access to the user's profile. */
READ_USER,
/** Grants read-only access to repositories on private projects using Git-over-HTTP. */
READ_REPOSITORY,
/** Grants read-write access to repositories on private projects using Git-over-HTTP. */
WRITE_REPOSITORY,
/** Grants read (pull) access to a Container Registry. */
READ_REGISTRY,
/** Grants write (push) access to a Container Registry. */
WRITE_REGISTRY,
/** Grants pull access through the dependency proxy. */
READ_VIRTUAL_REGISTRY,
/** Grants push, pull and delete access through the dependency proxy. */
WRITE_VIRTUAL_REGISTRY,
/** Grants create access to the runners. */
CREATE_RUNNER,
/** Grants access to manage the runners. */
MANAGE_RUNNER,
/** Grants access to GitLab Duo related API endpoints. */
AI_FEATURES,
/** Grants permission to perform Kubernetes API calls using the agent for Kubernetes. */
K8S_PROXY,
/** Grants permission to rotate this token using the personal access token API. */
SELF_ROTATE,
/** Grants permission to perform API actions as any user in the system, when authenticated as an admin user. */
SUDO;
private static JacksonJsonEnumHelper<Scope> enumHelper = new JacksonJsonEnumHelper<>(Scope.class);
@JsonCreator
public static Scope forValue(String value) {
return enumHelper.forValue(value);
}
@JsonValue
public String toValue() {
return (enumHelper.toString(this));
}
@Override
public String toString() {
return (enumHelper.toString(this));
}
}
private Boolean active;
private String token;
private List<Scope> scopes;
private Long userId;
private Boolean revoked;
private String name;
private String description;
private Long id;
private Date createdAt;
private Date lastUsedAt;
private Boolean impersonation;
@JsonSerialize(using = JacksonJson.DateOnlySerializer.class)
private Date expiresAt;
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public String getToken() {
return token;
}
public void setToken(String token) {
this.token = token;
}
public List<Scope> getScopes() {
return scopes;
}
public void setScopes(List<Scope> scopes) {
this.scopes = scopes;
}
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public Boolean getRevoked() {
return revoked;
}
public void setRevoked(Boolean revoked) {
this.revoked = revoked;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getLastUsedAt() {
return lastUsedAt;
}
public void setLastUsedAt(Date lastUsedAt) {
this.lastUsedAt = lastUsedAt;
}
public Boolean getImpersonation() {
return impersonation;
}
public void setImpersonation(Boolean impersonation) {
this.impersonation = impersonation;
}
public Date getExpiresAt() {
return expiresAt;
}
public void setExpiresAt(Date expiresAt) {
this.expiresAt = expiresAt;
}
@Override
public String toString() {
return (JacksonJson.toJsonString(this));
}
}