Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
J
java-gitlab-api
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
沈俊林
java-gitlab-api
Commits
e19011d1
Commit
e19011d1
authored
Aug 08, 2014
by
bitsofinfo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added a few more missing properties (not documented but are returned)
parent
8a19a9ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
GitlabUser.java
src/main/java/org/gitlab/api/models/GitlabUser.java
+33
-0
No files found.
src/main/java/org/gitlab/api/models/GitlabUser.java
View file @
e19011d1
...
...
@@ -19,6 +19,12 @@ public class GitlabUser {
private
String
_state
;
private
boolean
_blocked
;
@JsonProperty
(
"private_token"
)
private
String
_privateToken
;
@JsonProperty
(
"color_scheme_id"
)
private
Integer
_colorSchemeId
;
@JsonProperty
(
"provider"
)
private
String
_externProviderName
;
...
...
@@ -51,6 +57,9 @@ public class GitlabUser {
@JsonProperty
(
"can_create_team"
)
private
boolean
_canCreateTeam
;
@JsonProperty
(
"avatar_url"
)
private
String
_avatarUrl
;
public
Integer
getId
()
{
return
_id
;
...
...
@@ -219,4 +228,28 @@ public class GitlabUser {
public
void
setCanCreateTeam
(
boolean
canCreateTeam
)
{
_canCreateTeam
=
canCreateTeam
;
}
public
String
getAvatarUrl
()
{
return
_avatarUrl
;
}
public
void
setAvatarUrl
(
String
avatarUrl
)
{
this
.
_avatarUrl
=
avatarUrl
;
}
public
Integer
getColorSchemeId
()
{
return
_colorSchemeId
;
}
public
void
setColorSchemeId
(
Integer
colorSchemeId
)
{
this
.
_colorSchemeId
=
colorSchemeId
;
}
public
String
getPrivateToken
()
{
return
_privateToken
;
}
public
void
setPrivateToken
(
String
privateToken
)
{
this
.
_privateToken
=
privateToken
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment