|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use User | |
---|---|
hudson | |
hudson.console | Beef up the plain text console output by adding HTML markup. |
hudson.model | Core object model that are bound to URLs via stapler, rooted at Hudson. |
hudson.scm | Hudson's interface with source code management systems. |
hudson.search | QuickSilver-like search/jump capability for better navigation around the website. |
hudson.security | Security-related code. |
hudson.tasks | Built-in Builders and Publishers that perform the actual heavy-lifting of a build. |
jenkins.model | |
jenkins.security | |
org.jvnet.hudson.test | Test harness for Jenkins and its plugins. |
Uses of User in hudson |
---|
Methods in hudson with parameters of type User | |
---|---|
static String |
Functions.getAvatar(User user,
String avatarSize)
Returns an avatar image URL for the specified user and preferred image size |
String |
Functions.getUserAvatar(User user,
String avatarSize)
Deprecated. as of 1.451 Use Functions.getAvatar(hudson.model.User, java.lang.String) |
Uses of User in hudson.console |
---|
Methods in hudson.console with parameters of type User | |
---|---|
static String |
ModelHyperlinkNote.encodeTo(User u)
|
static String |
ModelHyperlinkNote.encodeTo(User u,
String text)
|
Uses of User in hudson.model |
---|
Fields in hudson.model declared as User | |
---|---|
protected User |
UserProperty.user
The user object that owns this property. |
Methods in hudson.model that return User | |
---|---|
static User |
User.current()
Gets the User object representing the currently logged-in user, or null
if the current user is anonymous. |
static User |
User.get(String idOrFullName)
Gets the User object by its id or full name. |
static User |
User.get(String idOrFullName,
boolean create)
Deprecated. use get(String, boolean, java.util.Map) |
static User |
User.get(String idOrFullName,
boolean create,
Map context)
Gets the User object by its id or full name. |
static User |
User.getUnknown()
Gets the fallback "unknown" user instance. |
User |
View.UserInfo.getUser()
|
User |
MyViewsProperty.getUser()
|
Methods in hudson.model that return types with arguments of type User | |
---|---|
static Collection<User> |
User.getAll()
Gets all the users. |
Set<User> |
AbstractBuild.getCulprits()
List of users who committed a change since the last non-broken build till now. |
Methods in hudson.model with parameters of type User | |
---|---|
int |
User.compareTo(User that)
|
Collection<? extends Action> |
TransientUserActionFactory.createFor(User target)
Creates actions for the given user. |
boolean |
AbstractBuild.hasParticipant(User user)
Returns true if this user has made a commit to this build. |
boolean |
AbstractProject.hasParticipant(User user)
Returns true if this user has made a commit to this project. |
abstract UserProperty |
UserPropertyDescriptor.newInstance(User user)
Creates a default instance of UserProperty to be associated
with User object that wasn't created from a persisted XML data. |
UserProperty |
MyViewsProperty.DescriptorImpl.newInstance(User user)
|
Uses of User in hudson.scm |
---|
Methods in hudson.scm that return User | |
---|---|
abstract User |
ChangeLogSet.Entry.getAuthor()
The user who made this change. |
Uses of User in hudson.search |
---|
Methods in hudson.search with parameters of type User | |
---|---|
UserProperty |
UserSearchProperty.DescriptorImpl.newInstance(User user)
|
Uses of User in hudson.security |
---|
Methods in hudson.security that return User | |
---|---|
User |
HudsonPrivateSecurityRealm.createAccount(String userName,
String password)
Creates a new user account by registering a password to the user. |
User |
HudsonPrivateSecurityRealm.doCreateAccount(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Creates an user account. |
User |
HudsonPrivateSecurityRealm.doCreateAccountWithFederatedIdentity(org.kohsuke.stapler.StaplerRequest req,
org.kohsuke.stapler.StaplerResponse rsp)
Creates an account and associates that with the given identity. |
User |
HudsonPrivateSecurityRealm.getUser(String id)
This is to map users under the security realm URL. |
User |
FederatedLoginService.FederatedIdentity.locateUser()
Locates the user who owns this identifier. |
User |
FederatedLoginService.FederatedIdentity.signin()
Call this method to authenticate the user when you confirmed (via your protocol specific work) that the current HTTP request indeed owns this identifier. |
Methods in hudson.security that return types with arguments of type User | |
---|---|
List<User> |
HudsonPrivateSecurityRealm.getAllUsers()
All users who can login to the system. |
Methods in hudson.security with parameters of type User | |
---|---|
void |
FederatedLoginService.FederatedIdentity.addTo(User u)
Adds this identity to the specified user. |
ACL |
AuthorizationStrategy.getACL(User user)
Implementation can choose to provide different ACL per user. |
UserProperty |
HudsonPrivateSecurityRealm.Details.DescriptorImpl.newInstance(User user)
|
Uses of User in hudson.tasks |
---|
Methods in hudson.tasks with parameters of type User | |
---|---|
abstract String |
UserAvatarResolver.findAvatarFor(User u,
int width,
int height)
Finds an avatar image URL string for a user. |
abstract String |
UserNameResolver.findNameFor(User u)
Finds full name of the given user. |
static String |
UserNameResolver.resolve(User u)
|
static String |
UserAvatarResolver.resolve(User u,
String avatarSize)
Resolve an avatar image URL string for the user |
Uses of User in jenkins.model |
---|
Methods in jenkins.model that return User | |
---|---|
User |
Jenkins.getMe()
Exposes the current user to /me URL. |
User |
CauseOfInterruption.UserInterruption.getUser()
|
User |
Jenkins.getUser(String name)
Gets the user of the given name. |
Constructors in jenkins.model with parameters of type User | |
---|---|
CauseOfInterruption.UserInterruption(User user)
|
Uses of User in jenkins.security |
---|
Methods in jenkins.security with parameters of type User | |
---|---|
org.kohsuke.stapler.HttpResponse |
ApiTokenProperty.DescriptorImpl.doChangeToken(User u,
org.kohsuke.stapler.StaplerResponse rsp)
|
ApiTokenProperty |
ApiTokenProperty.DescriptorImpl.newInstance(User user)
When we are creating a default ApiTokenProperty for User,
we need to make sure it yields the same value for the same user,
because there's no guarantee that the property is saved. |
Uses of User in org.jvnet.hudson.test |
---|
Methods in org.jvnet.hudson.test that return User | |
---|---|
User |
JenkinsRule.configRoundtrip(User u)
|
protected User |
HudsonTestCase.configRoundtrip(User u)
|
User |
FakeChangeLogSCM.EntryImpl.getAuthor()
|
User |
ExtractChangeLogParser.ExtractChangeLogEntry.getAuthor()
|
Methods in org.jvnet.hudson.test with parameters of type User | |
---|---|
User |
JenkinsRule.configRoundtrip(User u)
|
protected User |
HudsonTestCase.configRoundtrip(User u)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |