Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
f93b15dd
Commit
f93b15dd
authored
Nov 28, 2018
by
Greg Messner
Browse files
Fixed Javadoc warnings.
parent
cab7f054
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/User.java
View file @
f93b15dd
...
...
@@ -4,6 +4,7 @@ import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public
class
User
extends
AbstractUser
<
User
>
{
private
String
externUid
;
public
void
setExternUid
(
String
externUid
)
{
...
...
@@ -14,23 +15,31 @@ public class User extends AbstractUser<User> {
return
this
.
externUid
;
}
public
User
withExternUid
(
String
externUid
)
{
setExternUid
(
externUid
);
return
this
;
}
/**
* Fluent method to set the projects_limit setting.
*
* @param projectsLimit the value for the projects_limit setting
* @deprecated Replaced by {@link #withProjectsLimit(Integer)}
* @see #withProjectsLimit(Integer)
* @see #withProjectsLimit(Integer)
* @return the value of this instance
*/
@Deprecated
public
User
withProjectLimit
(
Integer
projectsLimit
)
{
return
withProjectsLimit
(
projectsLimit
);
}
public
User
withExternUid
(
String
externUid
)
{
setExternUid
(
externUid
);
return
this
;
}
/**
* Fluent method to set the shared_projects_minutes_limit setting.
*
* @param sharedRunnersMinuteLimit the value for the shared_projects_minutes_limit setting
* @deprecated Replaced by {@link #withSharedRunnersMinutesLimit(Integer)}
* @see #withSharedRunnersMinutesLimit(Integer)
* @see #withSharedRunnersMinutesLimit(Integer)
* @return the value of this instance
*/
@Deprecated
public
User
withSharedRunnersMinuteLimit
(
Integer
sharedRunnersMinuteLimit
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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