|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of User in com.atlassian.jira.avatar |
|---|
| Methods in com.atlassian.jira.avatar with parameters of type User | |
|---|---|
boolean |
AvatarManager.hasPermissionToEdit(User remoteUser,
Avatar.Type type,
String ownerId)
Determines if the remoteUser provided has permission to edit avatars of a certain type for the owner provided. |
boolean |
AvatarManager.hasPermissionToView(User remoteUser,
Avatar.Type type,
String ownerId)
Determines if the remoteUser provided has permission to view avatars of a certain type for the owner provided. |
| Uses of User in com.atlassian.jira.bc |
|---|
| Methods in com.atlassian.jira.bc that return User | |
|---|---|
User |
JiraServiceContextImpl.getUser()
Returns user, can be null |
User |
JiraServiceContext.getUser()
Deprecated. Use JiraServiceContext.getLoggedInUser(). Since 4.4 |
| Constructors in com.atlassian.jira.bc with parameters of type User | |
|---|---|
JiraServiceContextImpl(User user)
Deprecated. since v4.3. Use JiraServiceContextImpl.JiraServiceContextImpl(com.atlassian.crowd.embedded.api.User) instead. |
|
JiraServiceContextImpl(User user,
ErrorCollection errorCollection)
Deprecated. since v4.3. Use JiraServiceContextImpl.JiraServiceContextImpl(com.atlassian.crowd.embedded.api.User, com.atlassian.jira.util.ErrorCollection) instead. |
|
JiraServiceContextImpl(User user,
ErrorCollection errorCollection,
I18nHelper i18nHelper)
Deprecated. since v4.3. Use JiraServiceContextImpl.JiraServiceContextImpl(com.atlassian.crowd.embedded.api.User, com.atlassian.jira.util.ErrorCollection, com.atlassian.jira.util.I18nHelper) instead. |
|
| Uses of User in com.atlassian.jira.bc.config |
|---|
| Methods in com.atlassian.jira.bc.config with parameters of type User | |
|---|---|
ServiceOutcome<IssueType> |
ConstantsService.getIssueTypeById(User user,
String issueTypeId)
Returns a ServiceOutcome containing the IssueType that has the given id. |
ServiceOutcome<Status> |
ConstantsService.getStatusById(User user,
String statusId)
Returns a ServiceOutcome containing the Status that has the given id. |
| Uses of User in com.atlassian.jira.bc.favourites |
|---|
| Methods in com.atlassian.jira.bc.favourites with parameters of type User | |
|---|---|
boolean |
FavouritesService.isFavourite(User user,
SharedEntity entity)
Check that the given entity is a favourite of the user passed in the context |
| Uses of User in com.atlassian.jira.bc.filter |
|---|
| Methods in com.atlassian.jira.bc.filter with parameters of type User | |
|---|---|
Collection<org.ofbiz.core.entity.GenericValue> |
FilterSubscriptionService.getVisibleSubscriptions(User user,
SearchRequest filter)
Retrieves a list of subscriptions that a given user can see for a given filter. |
| Uses of User in com.atlassian.jira.bc.issue |
|---|
| Methods in com.atlassian.jira.bc.issue with parameters of type User | |
|---|---|
IssueService.IssueResult |
IssueService.create(User user,
IssueService.CreateValidationResult createValidationResult)
This method will store the provided issue to the JIRA datastore. |
IssueService.IssueResult |
IssueService.create(User user,
IssueService.CreateValidationResult createValidationResult,
String initialWorkflowActionName)
This method will store the provided issue to the JIRA datastore. |
ErrorCollection |
IssueService.delete(User user,
IssueService.DeleteValidationResult deleteValidationResult)
This method will delete an issue from JIRA. |
ErrorCollection |
IssueService.delete(User user,
IssueService.DeleteValidationResult deleteValidationResult,
EventDispatchOption eventDispatchOption,
boolean sendMail)
This method will delete an issue from JIRA. |
IssueService.IssueResult |
IssueService.getIssue(User user,
Long issueId)
This method will retrieve the issue with the provided issue id if the current user has permission to view the issue. |
IssueService.IssueResult |
IssueService.getIssue(User user,
String issueKey)
This method will retrieve the issue with the provided issue id if the current user has permission to view the issue. |
boolean |
IssueService.isEditable(Issue issue,
User user)
Returns true if the issue can be edited by the current user. |
IssueService.IssueResult |
IssueService.transition(User user,
IssueService.TransitionValidationResult transitionResult)
This method will store the provided issue to the JIRA datastore and will transition it through workflow. |
IssueService.IssueResult |
IssueService.update(User user,
IssueService.UpdateValidationResult updateValidationResult)
This method will store the provided issue to the JIRA datastore. |
IssueService.IssueResult |
IssueService.update(User user,
IssueService.UpdateValidationResult updateValidationResult,
EventDispatchOption eventDispatchOption,
boolean sendMail)
This method will store the provided issue to the JIRA datastore. |
IssueService.CreateValidationResult |
IssueService.validateCreate(User user,
IssueInputParameters issueInputParameters)
This method will validate parameters and check permissions and if all checks pass it will create an Issue
that can be passed to the IssueService.create(User, CreateValidationResult)
method. |
IssueService.DeleteValidationResult |
IssueService.validateDelete(User user,
Long issueId)
This method will check permissions to see if a user has the Permissions.DELETE_ISSUE
permission in relation to the provided issue. |
IssueService.CreateValidationResult |
IssueService.validateSubTaskCreate(User user,
Long parentId,
IssueInputParameters issueInputParameters)
This method does the same as IssueService.validateCreate(User, IssueInputParameters)
and it allows you to specify a parentId such that the created issue will be a subtask of the provided parent id. |
IssueService.TransitionValidationResult |
IssueService.validateTransition(User user,
Long issueId,
int actionId,
IssueInputParameters issueInputParameters)
This method will validate parameters and check the transition conditions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters. |
IssueService.UpdateValidationResult |
IssueService.validateUpdate(User user,
Long issueId,
IssueInputParameters issueInputParameters)
This method will validate parameters and check permissions and if all checks pass it will construct a new instance of the Issue and will update it with the new parameters. |
| Uses of User in com.atlassian.jira.bc.issue.comment |
|---|
| Methods in com.atlassian.jira.bc.issue.comment with parameters of type User | |
|---|---|
Comment |
CommentService.create(User user,
Issue issue,
String body,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue set with current date and time, visible to all
- no group level or role level restriction. |
Comment |
CommentService.create(User user,
Issue issue,
String body,
String groupLevel,
Long roleLevelId,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue set with current date and time. |
Comment |
CommentService.create(User user,
Issue issue,
String body,
String groupLevel,
Long roleLevelId,
Date created,
boolean dispatchEvent,
ErrorCollection errorCollection)
Creates and persists a Comment on the given Issue. |
Comment |
CommentService.getCommentById(User user,
Long commentId,
ErrorCollection errorCollection)
Will return a comment for the passed in commentId. |
List<Comment> |
CommentService.getCommentsForUser(User currentUser,
Issue issue,
ErrorCollection errorCollection)
Will return a list of Comments for the given user |
MutableComment |
CommentService.getMutableComment(User user,
Long commentId,
ErrorCollection errorCollection)
Will return a MutableComment for the passed in commentId. |
boolean |
CommentService.hasPermissionToCreate(User user,
Issue issue,
ErrorCollection errorCollection)
Has the correct permission to create a comment for the given issue. |
boolean |
CommentService.hasPermissionToEdit(User user,
Comment comment,
ErrorCollection errorCollection)
Determine whether the current user has the permission to edit the comment. |
boolean |
CommentService.isValidAllCommentData(User user,
Issue issue,
String body,
String groupLevel,
String roleLevelId,
ErrorCollection errorCollection)
Will call all other validate methods setting the appropriate errors in the errorCollection if any errors occur. |
boolean |
CommentService.isValidCommentData(User user,
Issue issue,
String groupLevel,
String roleLevelId,
ErrorCollection errorCollection)
This method validates if the comment has the correct role and group levels set. |
void |
CommentService.update(User user,
MutableComment comment,
boolean dispatchEvent,
ErrorCollection errorCollection)
Updates a Comment and sets the comments updated date to be now and the updatedAuthor to be the
passed in user. |
void |
CommentService.validateCommentUpdate(User user,
Long commentId,
String body,
String groupLevel,
Long roleLevelId,
ErrorCollection errorCollection)
Confirms the parameters to update a comment are valid and that the updating user has the permission to do so. |
| Uses of User in com.atlassian.jira.bc.issue.label |
|---|
| Methods in com.atlassian.jira.bc.issue.label with parameters of type User | |
|---|---|
LabelService.LabelsResult |
LabelService.addLabel(User user,
LabelService.AddLabelValidationResult result,
boolean sendNotification)
Adds the label to the issue specified by the validation result. |
LabelService.LabelsResult |
LabelService.getLabels(User user,
Long issueId)
Returns all the labels for the given issue. |
LabelService.LabelsResult |
LabelService.getLabels(User user,
Long issueId,
Long customFieldId)
Returns all the labels for the given issue and custom field. |
LabelService.LabelSuggestionResult |
LabelService.getSuggestedLabels(User user,
Long issueId,
Long customFieldId,
String token)
Given a token to search for, this method returns a number of suggestions for the label. |
LabelService.LabelSuggestionResult |
LabelService.getSuggestedLabels(User user,
Long issueId,
String token)
Given a token to search for, this method returns a number of suggestions for the label. |
LabelService.LabelsResult |
LabelService.setLabels(User user,
LabelService.SetLabelValidationResult result,
boolean sendNotification,
boolean causeChangeNotification)
Sets the labels for a particular issue to the set specified as a parameter. |
LabelService.AddLabelValidationResult |
LabelService.validateAddLabel(User user,
Long issueId,
Long customFieldId,
String label)
Validates that the user provided can add the label provided for a particular issue. |
LabelService.AddLabelValidationResult |
LabelService.validateAddLabel(User user,
Long issueId,
String label)
Validates that the user provided can add the label provided for a particular issue. |
LabelService.SetLabelValidationResult |
LabelService.validateSetLabels(User user,
Long issueId,
Long customFieldId,
Set<String> labels)
Validates that the user provided can set the labels provided for a particular issue. |
LabelService.SetLabelValidationResult |
LabelService.validateSetLabels(User user,
Long issueId,
Set<String> labels)
Validates that the user provided can set the labels provided for a particular issue. |
| Uses of User in com.atlassian.jira.bc.issue.search |
|---|
| Uses of User in com.atlassian.jira.bc.issue.vote |
|---|
| Methods in com.atlassian.jira.bc.issue.vote that return types with arguments of type User | |
|---|---|
ServiceOutcome<Collection<User>> |
VoteService.viewVoters(Issue issue,
User remoteUser)
Get the list of all users who have voted on an issue. |
| Methods in com.atlassian.jira.bc.issue.vote with parameters of type User | |
|---|---|
int |
VoteService.addVote(User remoteUser,
VoteService.VoteValidationResult validationResult)
Adds a new vote using the specified validation result |
boolean |
VoteService.hasVoted(Issue issue,
User user)
Find if the specified user has voted on an issue |
int |
VoteService.removeVote(User remoteUser,
VoteService.VoteValidationResult validationResult)
Removes a new vote using the specified validation result |
VoteService.VoteValidationResult |
VoteService.validateAddVote(User remoteUser,
User user,
Issue issue)
Validates if the user currently logged in may add a vote by the user supplied for the issue provided. |
VoteService.VoteValidationResult |
VoteService.validateRemoveVote(User remoteUser,
User user,
Issue issue)
Validates if the user currently logged in may remove a vote for the user supplied for the issue provided. |
ServiceOutcome<Collection<User>> |
VoteService.viewVoters(Issue issue,
User remoteUser)
Get the list of all users who have voted on an issue. |
| Uses of User in com.atlassian.jira.bc.issue.watcher |
|---|
| Methods in com.atlassian.jira.bc.issue.watcher that return types with arguments of type User | |
|---|---|
ServiceOutcome<List<User>> |
WatcherService.addWatcher(Issue issue,
User remoteUser,
User watcher)
Deprecated. since v4.3. Use WatcherService.addWatcher(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User) instead. |
ServiceOutcome<Pair<Integer,List<User>>> |
WatcherService.getWatchers(Issue issue,
User remoteUser)
Deprecated. since v4.3. Use WatcherService.getWatchers(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead. |
ServiceOutcome<List<User>> |
WatcherService.removeWatcher(Issue issue,
User remoteUser,
User watcher)
Deprecated. since v4.3. Use WatcherService.removeWatcher(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User) instead. |
| Uses of User in com.atlassian.jira.bc.project |
|---|
| Methods in com.atlassian.jira.bc.project with parameters of type User | |
|---|---|
ProjectService.DeleteProjectResult |
ProjectService.deleteProject(User user,
ProjectService.DeleteProjectValidationResult deleteProjectValidationResult)
Deletes the project provided by the deleteProjectValidationResult. |
ProjectService.GetProjectResult |
ProjectService.getProjectById(User user,
Long id)
Used to retrieve a Project object by id. |
ProjectService.GetProjectResult |
ProjectService.getProjectByKey(User user,
String key)
Used to retrieve a Project object by key. |
ProjectService.CreateProjectValidationResult |
ProjectService.validateCreateProject(User user,
String name,
String key,
String description,
String lead,
String url,
Long assigneeType)
This method needs to be called before creating a project to ensure all parameters are correct. |
ProjectService.CreateProjectValidationResult |
ProjectService.validateCreateProject(User user,
String name,
String key,
String description,
String lead,
String url,
Long assigneeType,
Long avatarId)
This method needs to be called before creating a project to ensure all parameters are correct. |
ProjectService.DeleteProjectValidationResult |
ProjectService.validateDeleteProject(User user,
String key)
Validation to delete a project is quite straightforward. |
ProjectService.UpdateProjectValidationResult |
ProjectService.validateUpdateProject(User user,
String name,
String key,
String description,
String lead,
String url,
Long assigneeType)
Validates updating a project's details. |
ProjectService.UpdateProjectValidationResult |
ProjectService.validateUpdateProject(User user,
String name,
String key,
String description,
String lead,
String url,
Long assigneeType,
Long avatarId)
Validates updating a project's details. |
ProjectService.UpdateProjectSchemesValidationResult |
ProjectService.validateUpdateProjectSchemes(User user,
Long permissionSchemeId,
Long notificationSchemeId,
Long issueSecuritySchemeId)
If the scheme ids are not null or -1 (-1 is often used to reset schemes), then an attempt will be made to retrieve the scheme. |
| Uses of User in com.atlassian.jira.bc.project.component |
|---|
| Methods in com.atlassian.jira.bc.project.component with parameters of type User | |
|---|---|
ProjectComponent |
ProjectComponentService.create(User user,
ErrorCollection errorCollection,
String name,
String description,
String lead,
Long projectId)
|
ProjectComponent |
ProjectComponentService.find(User user,
ErrorCollection errorCollection,
Long id)
|
ProjectComponent |
ProjectComponentService.update(User user,
ErrorCollection errorCollection,
MutableProjectComponent component)
|
| Uses of User in com.atlassian.jira.bc.project.version |
|---|
| Methods in com.atlassian.jira.bc.project.version with parameters of type User | |
|---|---|
Version |
VersionService.createVersion(User user,
VersionService.CreateVersionValidationResult request)
Using the validation result from VersionService.validateCreateVersion(User, com.atlassian.jira.project.Project,
String, String, String, Long) a new version will be created. |
VersionService.VersionResult |
VersionService.getVersionById(User user,
Long versionId)
Used to retrieve a Version object by version id. |
VersionService.VersionResult |
VersionService.getVersionById(User user,
Project project,
Long versionId)
Used to retrieve a Version object by version id within project
specified by Project object. |
VersionService.VersionResult |
VersionService.getVersionByProjectAndName(User user,
Project project,
String versionName)
Used to retrieve a Version object by version name within project
specified by Project object. |
VersionService.VersionsResult |
VersionService.getVersionsByProject(User user,
Project project)
Used to retrieve a Version collection within project
specified by Project object. |
VersionService.ArchiveVersionValidationResult |
VersionService.validateArchiveVersion(User user,
Version version)
This method should be called before archiving a version. |
VersionService.CreateVersionValidationResult |
VersionService.validateCreateVersion(User user,
Project project,
String versionName,
String releaseDate,
String description,
Long scheduleAfterVersion)
This method needs to be called before creating a version to ensure all parameters are correct. |
VersionService.ReleaseVersionValidationResult |
VersionService.validateReleaseVersion(User user,
Version version,
Date releaseDate)
This method needs to be called before releasing a version to ensure all parameters are correct. |
VersionService.ArchiveVersionValidationResult |
VersionService.validateUnarchiveVersion(User user,
Version version)
This method should be called before unarchiving a version. |
VersionService.ReleaseVersionValidationResult |
VersionService.validateUnreleaseVersion(User user,
Version version,
Date releaseDate)
This method needs to be called before unreleasing a version to ensure all parameters are correct. |
| Uses of User in com.atlassian.jira.bc.projectroles |
|---|
| Methods in com.atlassian.jira.bc.projectroles with parameters of type User | |
|---|---|
void |
ProjectRoleService.addActorsToProjectRole(User currentUser,
Collection<String> actors,
ProjectRole projectRole,
Project project,
String actorType,
ErrorCollection errorCollection)
Will add project role actor associations for the given actors and checking
the currentUser has the correct permissions to perform the update operation. |
void |
ProjectRoleService.addDefaultActorsToProjectRole(User currentUser,
Collection<String> actors,
ProjectRole projectRole,
String type,
ErrorCollection errorCollection)
Will add default role actor associations based off the passed in actors and checking
the currentUser has the correct permissions to perform the update operation. |
ProjectRole |
ProjectRoleService.createProjectRole(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will create the project role with the given projectRole.getName(),
projectRole.getDescription() and checking the currentUser has the correct permissions
to perform the create operation. |
void |
ProjectRoleService.deleteProjectRole(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will delete the given projectRole and checks
the currentUser has the correct permissions to perform the delete operation. |
Collection |
ProjectRoleService.getAssociatedIssueSecuritySchemes(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will get all issue security scheme's that the specified projectRole is currently used in. |
Collection |
ProjectRoleService.getAssociatedNotificationSchemes(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will get all notification scheme's that the specified projectRole is currently used in. |
Collection |
ProjectRoleService.getAssociatedPermissionSchemes(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will get all permission scheme's that the specified projectRole is currently used in. |
org.apache.commons.collections.MultiMap |
ProjectRoleService.getAssociatedWorkflows(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Returns workflows and their actions that are associated with the given ProjectRole. |
DefaultRoleActors |
ProjectRoleService.getDefaultRoleActors(User currentUser,
ProjectRole projectRole,
ErrorCollection collection)
Will return a DefaultRoleActors for the given projectRole checking the currentUser
has the correct permissions to perform the get operation. |
Map<Long,List<String>> |
ProjectRoleService.getProjectIdsForUserInGroupsBecauseOfRole(User currentUser,
List<Long> projectsToLimitBy,
ProjectRole projectRole,
String projectRoleType,
String userName,
ErrorCollection errorCollection)
Returns a Map of Lists. |
ProjectRole |
ProjectRoleService.getProjectRole(User currentUser,
Long id,
ErrorCollection errorCollection)
Will return the project role with the given id, and checking the currentUser
has the correct permissions to perform the operation. |
ProjectRoleActors |
ProjectRoleService.getProjectRoleActors(User currentUser,
ProjectRole projectRole,
Project project,
ErrorCollection errorCollection)
Will return a {@link ProjectRoleActors) for the given projectRole and project checking
the currentUser has the correct permissions to perform the get operation. |
ProjectRole |
ProjectRoleService.getProjectRoleByName(User currentUser,
String name,
ErrorCollection errorCollection)
Will return the project role with the given name, and checking the currentUser
has the correct permissions to perform the operation. |
Collection<ProjectRole> |
ProjectRoleService.getProjectRoles(User currentUser,
ErrorCollection errorCollection)
Get all the ProjectRoles available in JIRA. |
Collection<Project> |
ProjectRoleService.getProjectsContainingRoleActorByNameAndType(User currentUser,
String name,
String type,
ErrorCollection errorCollection)
Returns the Project's which contain a role actor of the specified name and type within any role. |
boolean |
ProjectRoleService.hasProjectRolePermission(User currentUser,
Project project)
Will have permission to modify roles if they are a JIRA admin or, if in enterprise, the user is a project administrator. |
boolean |
ProjectRoleService.isProjectRoleNameUnique(User currentUser,
String name,
ErrorCollection errorCollection)
Will tell you if a role name exists or not. |
void |
ProjectRoleService.removeActorsFromProjectRole(User currentUser,
Collection<String> actors,
ProjectRole projectRole,
Project project,
String actorType,
ErrorCollection errorCollection)
Will remove project role actor associations for the given actors and checking
the currentUser has the correct permissions to perform the update operation. |
void |
ProjectRoleService.removeAllRoleActorsByNameAndType(User currentUser,
String name,
String type,
ErrorCollection errorCollection)
Will remove all role actors with the specified name and the specified type. |
void |
ProjectRoleService.removeAllRoleActorsByProject(User currentUser,
Project project,
ErrorCollection errorCollection)
Will remove all role actors associated with the specified project. |
void |
ProjectRoleService.removeDefaultActorsFromProjectRole(User currentUser,
Collection<String> actors,
ProjectRole projectRole,
String actorType,
ErrorCollection errorCollection)
Will remove default actor associations based off the passed in actors, projectRole and
actorType and checking the currentUser has the correct permissions to perform the update operation. |
List<Long> |
ProjectRoleService.roleActorOfTypeExistsForProjects(User currentUser,
List<Long> projectsToLimitBy,
ProjectRole projectRole,
String projectRoleType,
String projectRoleParameter,
ErrorCollection errorCollection)
Returns a list of projectId's for which the role actor of the specified type exists in the project for the provided projectRole. |
void |
ProjectRoleService.updateProjectRole(User currentUser,
ProjectRole projectRole,
ErrorCollection errorCollection)
Will update projectRole, checking
the currentUser has the correct permissions to perform the update operation. |
ErrorCollection |
ProjectRoleService.validateRemoveAllRoleActorsByNameAndType(User currentUser,
String name,
String type)
Will validate removing all role actors with the specified name and the specified type. |
| Uses of User in com.atlassian.jira.bc.user |
|---|
| Methods in com.atlassian.jira.bc.user that return User | |
|---|---|
User |
UserService.createUser(UserService.CreateUserValidationResult result)
Deprecated. Please use UserService.createUserWithNotification(com.atlassian.jira.bc.user.UserService.CreateUserValidationResult) instead. Since v4.3 |
User |
UserService.createUserForSignup(UserService.CreateUserValidationResult result)
Deprecated. Please use UserService.createUserFromSignup(com.atlassian.jira.bc.user.UserService.CreateUserValidationResult) instead. Since v4.3 |
User |
UserService.createUserNoEvent(UserService.CreateUserValidationResult result)
Deprecated. Please use UserService.createUserNoNotification(com.atlassian.jira.bc.user.UserService.CreateUserValidationResult) instead. Since v4.3 |
| Methods in com.atlassian.jira.bc.user with parameters of type User | |
|---|---|
void |
UserService.removeUser(User user,
UserService.DeleteUserValidationResult result)
Given a valid validation result, this will remove the user and removes the user from all the groups. |
UserService.CreateUserValidationResult |
UserService.validateCreateUserForAdmin(User user,
String username,
String password,
String confirmPassword,
String email,
String fullname)
Validates creating a user for the admin section. |
UserService.CreateUserValidationResult |
UserService.validateCreateUserForAdminPasswordRequired(User user,
String username,
String password,
String confirmPassword,
String email,
String fullname)
Validates creating a user for RPC calls. |
UserService.CreateUserValidationResult |
UserService.validateCreateUserForSignupOrSetup(User user,
String username,
String password,
String confirmPassword,
String email,
String fullname)
Validates creating a user during setup of JIRA or during public signup. |
UserService.DeleteUserValidationResult |
UserService.validateDeleteUser(User loggedInUser,
String username)
Validates removing a user for the admin section. |
| Uses of User in com.atlassian.jira.bc.user.search |
|---|
| Methods in com.atlassian.jira.bc.user.search that return types with arguments of type User | |
|---|---|
Collection<User> |
UserPickerSearchService.getResults(JiraServiceContext jiraServiceContext,
String query)
Deprecated. Please use UserPickerSearchService.findUsers(com.atlassian.jira.bc.JiraServiceContext, String) instead. Since 4.3 |
Collection<User> |
UserPickerSearchService.getResultsSearchForEmptyQuery(JiraServiceContext jiraServiceContext,
String query)
Deprecated. Please use UserPickerSearchService.findUsersAllowEmptyQuery(com.atlassian.jira.bc.JiraServiceContext, String) instead. Since 4.3 |
| Uses of User in com.atlassian.jira.bulkedit.operation |
|---|
| Methods in com.atlassian.jira.bulkedit.operation with parameters of type User | |
|---|---|
boolean |
BulkOperation.canPerform(BulkEditBean bulkEditBean,
User remoteUser)
Deprecated. Use BulkOperation.canPerform(com.atlassian.jira.web.bean.BulkEditBean, com.atlassian.crowd.embedded.api.User). Since v4.3 |
void |
BulkOperation.perform(BulkEditBean bulkEditBean,
User remoteUser)
Deprecated. Use BulkOperation.perform(com.atlassian.jira.web.bean.BulkEditBean, com.atlassian.crowd.embedded.api.User). Since v4.3 |
| Uses of User in com.atlassian.jira.config |
|---|
| Methods in com.atlassian.jira.config with parameters of type User | |
|---|---|
IssueUpdateBean |
SubTaskManager.changeParent(org.ofbiz.core.entity.GenericValue subTask,
org.ofbiz.core.entity.GenericValue parentIssue,
User currentUser)
Change the parent of the given subtask to the given new parent on behalf of the given user. |
void |
SubTaskManager.createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue,
org.ofbiz.core.entity.GenericValue subTaskIssue,
User remoteUser)
|
void |
SubTaskManager.createSubTaskIssueLink(Issue parentIssue,
Issue subTaskIssue,
User remoteUser)
|
SubTaskBean |
SubTaskManager.getSubTaskBean(org.ofbiz.core.entity.GenericValue issue,
User remoteUser)
|
| Uses of User in com.atlassian.jira.event.issue |
|---|
| Methods in com.atlassian.jira.event.issue that return User | |
|---|---|
User |
IssueEvent.getRemoteUser()
Deprecated. Please use IssueEvent.getUser(). Deprecated since v4.3 |
| Uses of User in com.atlassian.jira.event.type |
|---|
| Methods in com.atlassian.jira.event.type with parameters of type User | |
|---|---|
String |
EventType.getTranslatedDesc(User remoteUser)
Deprecated. Use EventType.getTranslatedDesc(User). Since v4.3 |
String |
EventType.getTranslatedName(User remoteUser)
Deprecated. Use EventType.getTranslatedName(User). Since v4.3 |
| Uses of User in com.atlassian.jira.event.user |
|---|
| Methods in com.atlassian.jira.event.user that return User | |
|---|---|
User |
UserEvent.getInitiatingUser()
Returns the user who triggered the event. |
User |
UserEvent.getUser()
Returns the user that the event is occurring on. |
| Uses of User in com.atlassian.jira.favourites |
|---|
| Methods in com.atlassian.jira.favourites with parameters of type User | |
|---|---|
void |
FavouritesManager.addFavourite(User user,
S entity)
Add the given entity as a favourite of the user passed in add to favourites count if necessary. |
void |
FavouritesManager.addFavouriteInPosition(User user,
S entity,
long position)
Add the given entity as a favourite of the user passed in, in the specified position, add to favourites count if necessary. |
void |
FavouritesManager.decreaseFavouriteSequence(User user,
S entity)
Decreases the position of the SharedEntity relative to the user's set of all other entities of the same type. |
Collection<Long> |
FavouritesManager.getFavouriteIds(User user,
SharedEntity.TypeDescriptor<S> entityType)
Get the ids of a user's favourite Entities for a given entity type |
void |
FavouritesManager.increaseFavouriteSequence(User user,
S entity)
Increases the position of the SharedEntity relative to the user's set of all other entities of the same type. |
boolean |
FavouritesManager.isFavourite(User user,
S entity)
Check to see if the given entity is a favourite of the user passed in. |
void |
FavouritesManager.moveToEndFavouriteSequence(User user,
S entity)
Moves the position of the SharedEntity to the end relative to the user's set of all other entities of the same type. |
void |
FavouritesManager.moveToStartFavouriteSequence(User user,
S entity)
Moves the position of the SharedEntity to the start relative to the user's set of all other entities of the same type. |
void |
FavouritesManager.removeFavourite(User user,
S entity)
Remove the given entity as a favourite of the user passed in. |
void |
FavouritesManager.removeFavouritesForUser(User user,
SharedEntity.TypeDescriptor<S> entityType)
Remove the favourite associations for the given User and the given type |
| Uses of User in com.atlassian.jira.issue |
|---|
| Methods in com.atlassian.jira.issue that return User | |
|---|---|
User |
Issue.getAssignee()
Deprecated. use Issue.getAssigneeUser() Since 4.3 |
User |
Issue.getReporter()
Deprecated. use Issue.getReporterUser() Since 4.3 |
| Methods in com.atlassian.jira.issue that return types with arguments of type User | |
|---|---|
List<User> |
IssueManager.getIssueWatchers(org.ofbiz.core.entity.GenericValue issue)
Deprecated. Use IssueManager.getIssueWatchers(Issue) instead |
List<User> |
IssueManager.getIssueWatchers(Issue issue)
Deprecated. Use IssueManager.getWatchers(com.atlassian.jira.issue.Issue) instead |
| Methods in com.atlassian.jira.issue with parameters of type User | |
|---|---|
List<ChangeItemBean> |
AttachmentManager.convertTemporaryAttachments(User user,
Issue issue,
List<Long> selectedAttachments,
TemporaryAttachmentsMonitor temporaryAttachmentsMonitor)
Converts a set of provided temporary attachments to real attachments attached to an issue. |
ChangeItemBean |
AttachmentManager.createAttachment(File file,
String filename,
String contentType,
User remoteUser,
org.ofbiz.core.entity.GenericValue issue)
Same as the AttachmentManager.createAttachment(java.io.File, String, String, com.opensymphony.user.User, org.ofbiz.core.entity.GenericValue, java.util.Map, java.util.Date) method, except it
submits no attachmentProperties and uses now() for the created time. |
ChangeItemBean |
AttachmentManager.createAttachment(File file,
String filename,
String contentType,
User remoteUser,
org.ofbiz.core.entity.GenericValue issue,
Map<String,Object> attachmentProperties,
Date createdTime)
Create an attachment both on disk, and in the database. |
Attachment |
AttachmentManager.createAttachment(org.ofbiz.core.entity.GenericValue issue,
User author,
String mimetype,
String filename,
Long filesize,
Map<String,Object> attachmentProperties,
Date createdTime)
Create an attachment in the database. |
org.ofbiz.core.entity.GenericValue |
IssueManager.createIssue(User remoteUser,
Issue issue)
Persists a new issue. |
org.ofbiz.core.entity.GenericValue |
IssueManager.createIssue(User remoteUser,
Map<String,Object> fields)
Creates an issue. |
void |
IssueManager.deleteIssue(User user,
MutableIssue issue,
EventDispatchOption eventDispatchOption,
boolean sendMail)
This method will delete an issue from JIRA. |
List<Issue> |
IssueManager.getVotedIssues(User user)
Get a list of issues that the user has voted on and can see. |
List<Issue> |
IssueManager.getVotedIssuesOverrideSecurity(User user)
Get a list of issues that the user has voted on. |
List<Issue> |
IssueManager.getWatchedIssues(User user)
Get a list of issues that the user is watching and can see. |
List<Issue> |
IssueManager.getWatchedIssuesOverrideSecurity(User user)
Get a list of issues that the user is watching |
boolean |
IssueManager.isEditable(Issue issue,
User user)
Returns true if the issue can be edited by the current user. |
void |
MutableIssue.setAssignee(User assignee)
Deprecated. Call MutableIssue.setAssignee(com.atlassian.crowd.embedded.api.User). Since v4.3 |
void |
MutableIssue.setReporter(User reporter)
Deprecated. Call MutableIssue.setReporter(com.atlassian.crowd.embedded.api.User). Since v4.3 |
Issue |
IssueManager.updateIssue(User user,
MutableIssue issue,
EventDispatchOption eventDispatchOption,
boolean sendMail)
This method will store the provided issue to the JIRA datastore. |
| Uses of User in com.atlassian.jira.issue.changehistory |
|---|
| Methods in com.atlassian.jira.issue.changehistory that return User | |
|---|---|
User |
ChangeHistory.getUser()
|
| Methods in com.atlassian.jira.issue.changehistory with parameters of type User | |
|---|---|
Collection<Issue> |
ChangeHistoryManager.findUserHistory(User remoteUser,
Collection<String> usernames,
Collection<Project> projects,
int maxResults)
Deprecated. Please use ChangeHistoryManager.findUserHistory(com.atlassian.crowd.embedded.api.User, java.util.Collection, java.util.Collection, int) instead. Since v4.3 |
Collection<Issue> |
ChangeHistoryManager.findUserHistory(User remoteUser,
Collection<String> usernames,
int maxResults)
Deprecated. Please use ChangeHistoryManager.findUserHistory(com.atlassian.crowd.embedded.api.User, java.util.Collection, int) instead. Since v4.3 |
List<ChangeHistory> |
ChangeHistoryManager.getChangeHistoriesForUser(Issue issue,
User remoteUser)
Deprecated. Please use ChangeHistoryManager.getChangeHistoriesForUser(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
| Uses of User in com.atlassian.jira.issue.comments |
|---|
| Methods in com.atlassian.jira.issue.comments that return User | |
|---|---|
User |
Comment.getAuthorObject()
Deprecated. Use Comment.getAuthorUser() instead. Since v4.4. |
User |
Comment.getUpdateAuthorObject()
Deprecated. Use Comment.getUpdateAuthorUser() instead. Since v4.4. |
| Methods in com.atlassian.jira.issue.comments with parameters of type User | |
|---|---|
List<Comment> |
CommentManager.getCommentsForUser(Issue issue,
User user)
Deprecated. Please use CommentManager.getCommentsForUser(com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
CommentIterator |
RecentCommentManager.getRecentComments(SearchRequest searchRequest,
User user)
Return an iterator over all the comments from any issues in the search request that the user can see |
boolean |
CommentPermissionManager.hasBrowsePermission(Comment comment,
User user)
Deprecated. Use CommentPermissionManager.hasBrowsePermission(com.atlassian.crowd.embedded.api.User, Comment). Since v4.3 |
boolean |
CommentPermissionManager.hasDeleteAllPermission(User user,
Issue issue)
Returns true if the given User can delete all comments for the given Issue. |
boolean |
CommentPermissionManager.hasDeleteOwnPermission(User user,
Issue issue)
Returns true if the given User can delete her own comments in the given Issue. |
boolean |
CommentPermissionManager.hasEditAllPermission(User user,
Issue issue)
Returns true if user has permission to edit all comments in the given Issue. |
boolean |
CommentPermissionManager.hasEditOwnPermission(User user,
Issue issue)
Returns true if user has permission to edit her own comments in the given Issue. |
boolean |
CommentPermissionManager.hasEditPermission(Comment comment,
User user)
Deprecated. Use CommentPermissionManager.hasEditPermission(com.atlassian.crowd.embedded.api.User, Comment). Since v4.3 |
boolean |
CommentManager.isUserCommentAuthor(User user,
Comment comment)
Deprecated. Please use CommentManager.isUserCommentAuthor(com.atlassian.crowd.embedded.api.User, Comment) instead. Since v4.3 |
boolean |
CommentPermissionManager.isUserCommentAuthor(User user,
Comment comment)
Returns true if the given user is the author of the given comment. |
| Uses of User in com.atlassian.jira.issue.customfields.converters |
|---|
| Methods in com.atlassian.jira.issue.customfields.converters that return User | |
|---|---|
User |
UserConverter.getUser(String stringValue)
Deprecated. Use UserConverter.getUserObject(String stringValue). Since 4.3 |
| Methods in com.atlassian.jira.issue.customfields.converters with parameters of type User | |
|---|---|
String |
UserConverter.getString(User user)
|
| Uses of User in com.atlassian.jira.issue.customfields.searchers.transformer |
|---|
| Methods in com.atlassian.jira.issue.customfields.searchers.transformer with parameters of type User | |
|---|---|
String |
CustomFieldInputHelper.getUniqueClauseName(User searcher,
String primaryName,
String fieldName)
Given the primary clause name and the field name, returns the "unique" clause name that should be used when constructing terminal clauses for this clause name. |
| Uses of User in com.atlassian.jira.issue.fields.layout.column |
|---|
| Methods in com.atlassian.jira.issue.fields.layout.column with parameters of type User | |
|---|---|
ColumnLayout |
ColumnLayoutManager.getColumnLayout(User user)
Get the columns layout for a user, if the user does not have one the default is returned |
ColumnLayout |
ColumnLayoutManager.getColumnLayout(User remoteUser,
SearchRequest searchRequest)
Get the columns layout for a searchRequest, if the searchRequest does not have one the user's columns are returned. |
ColumnLayout |
ColumnLayoutManager.getDefaultColumnLayout(User remoteUser)
Get the default Layout, and filter out the columns which a user cannot see |
EditableSearchRequestColumnLayout |
ColumnLayoutManager.getEditableSearchRequestColumnLayout(User user,
SearchRequest searchRequest)
Get an editable column layout for the searchRequest, returns null if it does not have one |
EditableUserColumnLayout |
ColumnLayoutManager.getEditableUserColumnLayout(User user)
Get an editable column layout for the user, returns null if they do not have one |
boolean |
ColumnLayoutManager.hasColumnLayout(User user)
|
boolean |
ColumnLayoutItem.isAliasForField(User user,
String sortField)
|
void |
ColumnLayoutManager.restoreUserColumnLayout(User user)
|
| Uses of User in com.atlassian.jira.issue.fields.screen |
|---|
| Methods in com.atlassian.jira.issue.fields.screen with parameters of type User | |
|---|---|
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(List<String> fieldIds,
User remoteUser,
Issue issue,
IssueOperation issueOperation)
Returns a FieldScreenRenderer that represents a 'field screen' with the fields the ids of which
are in fieldIds. |
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(User remoteUser,
Issue issue,
com.opensymphony.workflow.loader.ActionDescriptor actionDescriptor)
Obtain a field screen renderer that can be used to render JIRA's fields when transitioning through the passed workflow. |
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(User remoteUser,
Issue issue,
IssueOperation issueOperation,
boolean onlyShownCustomFields)
Obtain a field screen renderer that can be used to render JIRA's fields for the passed arguments. |
FieldScreenRenderer |
FieldScreenRendererFactory.getFieldScreenRenderer(User remoteUser,
Issue issue,
IssueOperation issueOperation,
Predicate<? super Field> predicate)
Obtain a field screen renderer that can be used to render JIRA's fields for the passed arguments. |
| Uses of User in com.atlassian.jira.issue.label |
|---|
| Methods in com.atlassian.jira.issue.label with parameters of type User | |
|---|---|
Label |
LabelManager.addLabel(User remoteUser,
Long issueId,
Long customFieldId,
String label,
boolean sendNotification)
Adds a label to the issue and customFieldId provided. |
Label |
LabelManager.addLabel(User remoteUser,
Long issueId,
String label,
boolean sendNotification)
Adds a label to the issue provided. |
String |
LabelUtil.getLabelJql(User user,
Long customFieldId,
String label)
Given a label and custom field Id, this utility returns a JQL string to search for this label in the custom field provided |
String |
LabelUtil.getLabelJql(User user,
String label)
Given a label this utility returns a JQL string to search for this label in the system labels field |
String |
LabelUtil.getLabelJqlForProject(User user,
Long projectId,
Long customFieldId,
String label)
Given a label, project id and custom field id, this utility returns a JQL string to search for this label in the label custom field, limited by the project provided |
String |
LabelUtil.getLabelJqlForProject(User user,
Long projectId,
String label)
Given a label and project id, this utility returns a JQL string to search for this label in the label system field, limited by the project provided |
Set<String> |
LabelManager.getSuggestedLabels(User user,
Long issueId,
Long customFieldId,
String token)
Returns a set of label suggestions sorted alphabetically for the label custom field provided. |
Set<String> |
LabelManager.getSuggestedLabels(User user,
Long issueId,
String token)
Returns a set of label suggestions sorted alphabetically for the labels system field. |
Set<Label> |
LabelManager.setLabels(User remoteUser,
Long issueId,
Long customFieldId,
Set<String> labels,
boolean sendNotification,
boolean causeChangeNotification)
Sets the labels for a particular issue and field combo to the set specified as a parameter. |
Set<Label> |
LabelManager.setLabels(User remoteUser,
Long issueId,
Set<String> labels,
boolean sendNotification,
boolean causeChangeNotification)
Sets the labels for a particular issue to the set specified as a parameter. |
| Uses of User in com.atlassian.jira.issue.link |
|---|
| Methods in com.atlassian.jira.issue.link with parameters of type User | |
|---|---|
void |
IssueLinkTypeDestroyer.removeIssueLinkType(Long issueLinkTypeId,
IssueLinkType swapLinkType,
User remoteUser)
Deprecated. use IssueLinkTypeDestroyer.removeIssueLinkType(Long, IssueLinkType, com.atlassian.crowd.embedded.api.User) |
| Uses of User in com.atlassian.jira.issue.search |
|---|
| Uses of User in com.atlassian.jira.issue.search.managers |
|---|
| Methods in com.atlassian.jira.issue.search.managers with parameters of type User | |
|---|---|
Collection<ClauseHandler> |
SearchHandlerManager.getClauseHandler(User user,
String jqlClauseName)
Return a collection of ClauseHandlers registered against the passed JQL clause
name. |
Collection<String> |
SearchHandlerManager.getFieldIds(User searcher,
String jqlClauseName)
Gets the field ids that are associated with the provided jqlClauseName. |
Collection<IssueSearcher<?>> |
IssueSearcherManager.getSearchers(User searcher,
SearchContext context)
Get searchers that are applicable for a given context. |
Collection<IssueSearcher<?>> |
SearchHandlerManager.getSearchers(User searcher,
SearchContext context)
Get searchers that are applicable for a given context. |
Collection<IssueSearcher<?>> |
SearchHandlerManager.getSearchersByClauseName(User user,
String jqlClauseName,
SearchContext searchContext)
Return a collection of IssueSearchers registered against the
passed JQL clause name. |
Collection<ClauseHandler> |
SearchHandlerManager.getVisibleClauseHandlers(User searcher)
Get all the available clause handlers that the searcher can see. |
Collection<ClauseNames> |
SearchHandlerManager.getVisibleJqlClauseNames(User searcher)
Get all the available clause names that the searcher can see. |
| Uses of User in com.atlassian.jira.issue.search.searchers |
|---|
| Methods in com.atlassian.jira.issue.search.searchers with parameters of type User | |
|---|---|
boolean |
SearcherGroup.isShown(User searcher,
SearchContext searchContext)
|
| Uses of User in com.atlassian.jira.issue.search.searchers.renderer |
|---|
| Methods in com.atlassian.jira.issue.search.searchers.renderer with parameters of type User | |
|---|---|
String |
SearchRenderer.getEditHtml(User searcher,
SearchContext searchContext,
FieldValuesHolder fieldValuesHolder,
Map<?,?> displayParameters,
webwork.action.Action action)
Used to produce an HTML input that is rendered on the JIRA issue navigator. |
String |
SearchRenderer.getViewHtml(User searcher,
SearchContext searchContext,
FieldValuesHolder fieldValuesHolder,
Map<?,?> displayParameters,
webwork.action.Action action)
Used to produce the HTML that displays a searchers summary information (e.g. |
boolean |
SearchRenderer.isRelevantForQuery(User searcher,
Query query)
Checks if the searchRequest object has a search representation that was created by the searcher and is used to determine if the SearchRenderer.getViewHtml(User, com.atlassian.jira.issue.search.SearchContext, com.atlassian.jira.issue.transport.FieldValuesHolder, java.util.Map, webwork.action.Action)
method should be called when rendering the search summary. |
boolean |
SearchRenderer.isShown(User searcher,
SearchContext searchContext)
Checks if the searcher should be shown in this context on the Issue Navigator. |
| Uses of User in com.atlassian.jira.issue.search.searchers.transformer |
|---|
| Methods in com.atlassian.jira.issue.search.searchers.transformer with parameters of type User | |
|---|---|
boolean |
SearchInputTransformer.doRelevantClausesFitFilterForm(User searcher,
Query query,
SearchContext searchContext)
Tells the caller whether or not the relevant clauses from the passed query can be represented on the issue navigator. |
Clause |
SearchInputTransformer.getSearchClause(User searcher,
FieldValuesHolder fieldValuesHolder)
Gets the portion of the Search Query that this searcher is responsible for. |
void |
SearchInputTransformer.populateFromParams(User searcher,
FieldValuesHolder fieldValuesHolder,
ActionParams actionParams)
Populate FieldValuesHolder object with whatever values the searcher is interested in from the
ActionParams. |
void |
SearchInputTransformer.populateFromQuery(User searcher,
FieldValuesHolder fieldValuesHolder,
Query query,
SearchContext searchContext)
This method transforms any query information contained in the query that is relevant to this SearchInputTransformer into the values that the HTML rendering expects. |
void |
SearchInputTransformer.validateParams(User searcher,
SearchContext searchContext,
FieldValuesHolder fieldValuesHolder,
I18nHelper i18nHelper,
ErrorCollection errors)
Adds error meessages to the errors object if values in the fieldValuesHolder fails validation. |
| Uses of User in com.atlassian.jira.issue.security |
|---|
| Methods in com.atlassian.jira.issue.security with parameters of type User | |
|---|---|
Collection<org.ofbiz.core.entity.GenericValue> |
IssueSecurityLevelManager.getAllUsersSecurityLevels(User user)
Deprecated. Please use IssueSecurityLevelManager.getAllUsersSecurityLevels(com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
List<org.ofbiz.core.entity.GenericValue> |
IssueSecurityLevelManager.getUsersSecurityLevels(org.ofbiz.core.entity.GenericValue entity,
User user)
Deprecated. Please use IssueSecurityLevelManager.getUsersSecurityLevels(org.ofbiz.core.entity.GenericValue, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
Collection<org.ofbiz.core.entity.GenericValue> |
IssueSecurityLevelManager.getUsersSecurityLevelsByName(User user,
String securityLevelName)
Deprecated. Please use IssueSecurityLevelManager.getUsersSecurityLevelsByName(com.atlassian.crowd.embedded.api.User, String) instead. Since v4.3 |
| Uses of User in com.atlassian.jira.issue.subscription |
|---|
| Methods in com.atlassian.jira.issue.subscription with parameters of type User | |
|---|---|
org.ofbiz.core.entity.GenericValue |
SubscriptionManager.createSubscription(User user,
Long filterId,
String groupName,
Long period,
Boolean emailOnEmpty)
|
org.ofbiz.core.entity.GenericValue |
SubscriptionManager.createSubscription(User user,
Long filterId,
String groupName,
org.quartz.Trigger trigger,
Boolean emailOnEmpty)
Creates a new subscription based on the passed in filter id and fired in accordance with the passed in trigger |
void |
SubscriptionManager.deleteSubscriptionsForUser(User user)
|
org.ofbiz.core.entity.GenericValue |
SubscriptionManager.getSubscription(User user,
Long subId)
|
List<org.ofbiz.core.entity.GenericValue> |
SubscriptionManager.getSubscriptions(User user,
Long filterId)
|
boolean |
SubscriptionManager.hasSubscription(User user,
Long filterId)
|
void |
SubscriptionManager.runSubscription(User u,
Long subId)
|
void |
SubscriptionManager.updateSubscription(User user,
Long subscriptionId,
Map fields,
org.quartz.Trigger trigger)
Deprecated. Should use the method with an explicit list of fields |
void |
SubscriptionManager.updateSubscription(User user,
Long subscriptionId,
String groupName,
org.quartz.Trigger trigger,
Boolean emailOnEmpty)
|
| Uses of User in com.atlassian.jira.issue.vote |
|---|
| Methods in com.atlassian.jira.issue.vote that return types with arguments of type User | |
|---|---|
Iterable<User> |
IssueVoterAccessor.getDetails(Locale displayLocale,
Issue issue)
Deprecated. Use IssueVoterAccessor.getVoters(java.util.Locale, com.atlassian.jira.issue.Issue). Since 4.3 |
Collection<User> |
VoteManager.getVoters(Locale usersLocale,
org.ofbiz.core.entity.GenericValue issue)
Deprecated. Use VoteManager.getVoters(com.atlassian.jira.issue.Issue, java.util.Locale). Since v4.3 |
| Methods in com.atlassian.jira.issue.vote with parameters of type User | |
|---|---|
boolean |
VoteManager.addVote(User user,
org.ofbiz.core.entity.GenericValue issue)
Adds a new vote for the user and issue specified. |
boolean |
VoteManager.addVote(User user,
Issue issue)
Adds a new vote for the user and issue specified. |
Iterable<Long> |
VotedIssuesAccessor.getVotedIssueIds(User voter,
User searcher,
VotedIssuesAccessor.Security security)
Deprecated. Use VotedIssuesAccessor.getVotedIssueIds(com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User, com.atlassian.jira.issue.vote.VotedIssuesAccessor.Security). Since v4.3 |
boolean |
VoteManager.hasVoted(User user,
org.ofbiz.core.entity.GenericValue issue)
Checks if the collection of VoteManager.getVoters(java.util.Locale, org.ofbiz.core.entity.GenericValue) contains
the user supplied. |
boolean |
VoteManager.hasVoted(User user,
Issue issue)
Checks if the given User has voted on the given Issue. |
boolean |
VoteManager.removeVote(User user,
org.ofbiz.core.entity.GenericValue issue)
Removes a vote for the user and issue specified. |
boolean |
VoteManager.removeVote(User user,
Issue issue)
Removes a vote for the user and issue specified. |
void |
VoteManager.removeVotesForUser(User user)
Removes all votes made by user. |
| Method parameters in com.atlassian.jira.issue.vote with type arguments of type User | ||
|---|---|---|
|
IssueVoterAccessor.getDetails(Locale displayLocale,
Issue issue,
Function<User,T> transformer)
Deprecated. Use IssueVoterAccessor.getVoters(java.util.Locale, com.atlassian.jira.issue.Issue). Since 4.3 |
|
| Uses of User in com.atlassian.jira.issue.watchers |
|---|
| Methods in com.atlassian.jira.issue.watchers that return types with arguments of type User | |
|---|---|
Collection<User> |
WatcherManager.getCurrentWatchList(Locale userLocale,
org.ofbiz.core.entity.GenericValue issue)
Deprecated. Use WatcherManager.getCurrentWatchList(com.atlassian.jira.issue.Issue, java.util.Locale) instead. Since v4.3. |
Iterable<User> |
IssueWatcherAccessor.getDetails(Locale displayLocale,
Issue issue)
Deprecated. Please use IssueWatcherAccessor.getWatchers(com.atlassian.jira.issue.Issue, java.util.Locale). Since 4.3 |
| Methods in com.atlassian.jira.issue.watchers with parameters of type User | |
|---|---|
Iterable<Long> |
WatchedIssuesAccessor.getWatchedIssueIds(User watcher,
User searcher,
WatchedIssuesAccessor.Security security)
Deprecated. use WatchedIssuesAccessor.getWatchedIssueIds(com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.User, com.atlassian.jira.issue.watchers.WatchedIssuesAccessor.Security). Since v4.3 |
boolean |
WatcherManager.isWatching(User user,
org.ofbiz.core.entity.GenericValue issue)
Determine whether the current user is already watching the issue or not |
boolean |
WatcherManager.isWatching(User user,
Issue issue)
Determine whether the current user is already watching the issue or not |
void |
WatcherManager.removeAllWatchesForUser(User user)
Remove all watches for a given user |
void |
WatcherManager.startWatching(User user,
org.ofbiz.core.entity.GenericValue issue)
Enable watching of a particular issue for the user supplied. |
void |
WatcherManager.stopWatching(User user,
org.ofbiz.core.entity.GenericValue issue)
Disable watching of a particular issue for the user supplied. |
void |
WatcherManager.stopWatching(User user,
Issue issue)
Disable watching of a particular issue for the user supplied. |
| Method parameters in com.atlassian.jira.issue.watchers with type arguments of type User | ||
|---|---|---|
|
IssueWatcherAccessor.getDetails(Locale displayLocale,
Issue issue,
Function<User,T> transformer)
Deprecated. Please use IssueWatcherAccessor.getWatchers(com.atlassian.jira.issue.Issue, java.util.Locale). Since 4.3 |
|
| Uses of User in com.atlassian.jira.issue.worklog |
|---|
| Methods in com.atlassian.jira.issue.worklog with parameters of type User | |
|---|---|
Worklog |
WorklogManager.create(User user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Creates a worklog based on the passed in Worklog object and associates
it with the given issue. |
boolean |
WorklogManager.delete(User user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Deletes the specified worklog and updates the issue's remaining estimate and time spent fields. |
Worklog |
WorklogManager.update(User user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Updates the provided Worklog. |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogCreate(User user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Will set the Worklog.getIssue()'s remaining estimate to the newEstimate
and will increment the issues time spent by the Worklog.getTimeSpent(). |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogDelete(User user,
Worklog worklog,
Long newEstimate,
boolean dispatchEvent)
Will set the Worklog.getIssue()'s remaining estimate to the newEstimate
and will decrement the issues time spent by the Worklog.getTimeSpent(). |
void |
TimeTrackingIssueUpdater.updateIssueOnWorklogUpdate(User user,
Worklog originalWorklog,
Worklog newWorklog,
Long originalTimeSpent,
Long newEstimate,
boolean dispatchEvent)
Will set the Worklog.getIssue()'s remaining estimate to the newEstimate
and will decrement the issues time spent by the originalTimeSpent and then increment it by the
Worklog.getTimeSpent(). |
| Uses of User in com.atlassian.jira.jql.context |
|---|
| Methods in com.atlassian.jira.jql.context with parameters of type User | |
|---|---|
ClauseContext |
ClauseContextFactory.getClauseContext(User searcher,
TerminalClause terminalClause)
Generates a clause context for the associated handler. |
| Uses of User in com.atlassian.jira.jql.operand |
|---|
| Methods in com.atlassian.jira.jql.operand with parameters of type User | |
|---|---|
QueryLiteral |
JqlOperandResolver.getSingleValue(User user,
Operand operand,
TerminalClause clause)
Returns the single value contained within the passed operand. |
List<QueryLiteral> |
JqlOperandResolver.getValues(User searcher,
Operand operand,
TerminalClause terminalClause)
Return the values contained within the passed operand. |
FunctionOperand |
JqlOperandResolver.sanitiseFunctionOperand(User searcher,
FunctionOperand operand)
Sanitise a function operand for the specified user, so that information is not leaked. |
MessageSet |
JqlOperandResolver.validate(User user,
Operand operand,
TerminalClause terminalClause)
Validates the operand against its handler. |
| Uses of User in com.atlassian.jira.jql.query |
|---|
| Methods in com.atlassian.jira.jql.query that return User | |
|---|---|
User |
QueryCreationContext.getUser()
Get the User. |
| Uses of User in com.atlassian.jira.jql.validator |
|---|
| Methods in com.atlassian.jira.jql.validator with parameters of type User | |
|---|---|
MessageSet |
SupportedOperatorsValidator.validate(User searcher,
TerminalClause terminalClause)
|
MessageSet |
ClauseValidator.validate(User searcher,
TerminalClause terminalClause)
Validates a clause and adds human readable i18n'ed messages if there is a problem. |
| Uses of User in com.atlassian.jira.movesubtask.operation |
|---|
| Methods in com.atlassian.jira.movesubtask.operation with parameters of type User | |
|---|---|
boolean |
MoveSubTaskOperation.canPerform(MoveIssueBean moveIssueBean,
User remoteUser)
Determines whether the operation can be performed with the given issue |
| Uses of User in com.atlassian.jira.notification |
|---|
| Methods in com.atlassian.jira.notification that return User | |
|---|---|
User |
NotificationRecipient.getUser()
Deprecated. use NotificationRecipient.getUserRecipient() instead |
| Uses of User in com.atlassian.jira.plugin.jql.function |
|---|
| Methods in com.atlassian.jira.plugin.jql.function with parameters of type User | |
|---|---|
MessageSet |
JqlFunction.validate(User searcher,
FunctionOperand operand,
TerminalClause terminalClause)
Will validate the function operand's arguments and report back any errors. |
| Uses of User in com.atlassian.jira.plugin.searchrequestview.auth |
|---|
| Methods in com.atlassian.jira.plugin.searchrequestview.auth with parameters of type User | |
|---|---|
Authorizer.Result |
Authorizer.isSearchRequestAuthorized(User user,
SearchRequest searchRequest,
SearchRequestParams params)
Can the specified user perform this SearchRequest? |
| Uses of User in com.atlassian.jira.project |
|---|
| Methods in com.atlassian.jira.project that return User | |
|---|---|
User |
ProjectManager.getDefaultAssignee(org.ofbiz.core.entity.GenericValue project,
org.ofbiz.core.entity.GenericValue component)
Deprecated. Please use ProjectManager.getDefaultAssignee(Project, ProjectComponent). Since v4.3 |
User |
Project.getLead()
Deprecated. Use Project.getLeadUser() instead. |
| Methods in com.atlassian.jira.project with parameters of type User | |
|---|---|
Collection<org.ofbiz.core.entity.GenericValue> |
ProjectManager.getProjectsByLead(User leadUser)
Deprecated. Use ProjectManager.getProjectsLeadBy(com.atlassian.crowd.embedded.api.User) instead |
| Uses of User in com.atlassian.jira.project.browse |
|---|
| Methods in com.atlassian.jira.project.browse that return User | |
|---|---|
User |
BrowseContext.getUser()
The user browsing the project. |
| Uses of User in com.atlassian.jira.scheme |
|---|
| Methods in com.atlassian.jira.scheme that return types with arguments of type User | |
|---|---|
Collection<User> |
SchemeManager.getUsers(Long permissionId,
org.ofbiz.core.entity.GenericValue issueOrProject)
Deprecated. Use SchemeManager.getUsers(Long, com.atlassian.jira.permission.PermissionContext) instead. |
Collection<User> |
SchemeManager.getUsers(Long permissionId,
PermissionContext ctx)
|
| Uses of User in com.atlassian.jira.security |
|---|
| Methods in com.atlassian.jira.security that return User | |
|---|---|
User |
JiraAuthenticationContext.getUser()
Deprecated. use JiraAuthenticationContext.getLoggedInUser(). Since v4.3 |
| Uses of User in com.atlassian.jira.security.groups |
|---|
| Methods in com.atlassian.jira.security.groups with parameters of type User | |
|---|---|
boolean |
GroupManager.isUserInGroup(User user,
Group group)
Deprecated. Use GroupManager.isUserInGroup(com.atlassian.crowd.embedded.api.User, com.atlassian.crowd.embedded.api.Group) instead. Since v4.4. |
| Uses of User in com.atlassian.jira.security.roles |
|---|
| Methods in com.atlassian.jira.security.roles that return types with arguments of type User | |
|---|---|
Set<User> |
DefaultRoleActors.getUsers()
|
Set<User> |
RoleActor.getUsers()
Will provide a Set of users encapsulated by this RoleActor. |
| Uses of User in com.atlassian.jira.security.roles.actor |
|---|
| Methods in com.atlassian.jira.security.roles.actor that return types with arguments of type User | |
|---|---|
Set<User> |
GroupRoleActorFactory.GroupRoleActor.getUsers()
|
| Methods in com.atlassian.jira.security.roles.actor with parameters of type User | |
|---|---|
boolean |
GroupRoleActorFactory.GroupRoleActor.contains(User user)
|
| Uses of User in com.atlassian.jira.service.util.handler |
|---|
| Methods in com.atlassian.jira.service.util.handler that return User | |
|---|---|
protected User |
AbstractMessageHandler.createUserForReporter(javax.mail.Message message)
Tries to create a user using the details provided by the reporter. |
protected User |
AbstractMessageHandler.findUserByEmail(String emailAddress)
Returns the first User found with an email address that equals the given emailAddress case insensitively. |
protected User |
AbstractMessageHandler.findUserByUsername(String username)
Finds the user with the given username or returns null if there is no such User. |
protected User |
AbstractMessageHandler.getReporter(javax.mail.Message message)
Get the reporter from the email address who sent the message, or else create a new user if creating users is set to true, or use the default reporter if one is specified. |
| Methods in com.atlassian.jira.service.util.handler with parameters of type User | |
|---|---|
protected ChangeItemBean |
AbstractMessageHandler.createAttachmentWithPart(javax.mail.Part part,
User reporter,
org.ofbiz.core.entity.GenericValue issue)
Create an attachment for a particular mime-part. |
protected String |
AbstractMessageHandler.renameFileIfInvalid(String filename,
org.ofbiz.core.entity.GenericValue issue,
User reporter)
Replaces all invalid characters in the filename using FileNameCharacterCheckerUtil.replaceInvalidChars(String,
char) with AbstractMessageHandler.INVALID_CHAR_REPLACEMENT as the replacement character. |
| Uses of User in com.atlassian.jira.sharing |
|---|
| Methods in com.atlassian.jira.sharing with parameters of type User | |
|---|---|
boolean |
ShareManager.hasPermission(User user,
SharedEntity entity)
Checks to see if the user has permission to see this SharedEntity |
| Constructors in com.atlassian.jira.sharing with parameters of type User | |
|---|---|
SharedEntity.Identifier(Long id,
SharedEntity.TypeDescriptor<? extends SharedEntity> type,
User owner)
|
|
| Uses of User in com.atlassian.jira.user |
|---|
| Methods in com.atlassian.jira.user with parameters of type User | |
|---|---|
void |
UserAdminHistoryManager.addAdminPageToHistory(User user,
String key,
String data)
Add an admin page to the user history list. |
void |
UserIssueHistoryManager.addIssueToHistory(User user,
Issue issue)
Add an Issue to the user hsitory list. |
void |
UserHistoryManager.addItemToHistory(UserHistoryItem.Type type,
User user,
String entityId)
Deprecated. use UserHistoryManager.addItemToHistory(com.atlassian.jira.user.UserHistoryItem.Type, com.atlassian.crowd.embedded.api.User, String) instead. Since v4.3 |
void |
UserHistoryManager.addItemToHistory(UserHistoryItem.Type type,
User user,
String entityId,
String data)
|
void |
UserProjectHistoryManager.addProjectToHistory(User user,
Project project)
Add a Project to the user hsitory list. |
void |
UserQueryHistoryManager.addQueryToHistory(User user,
String query)
Add a JQL query string to the user history list. |
List<UserHistoryItem> |
UserAdminHistoryManager.getAdminPageHistoryWithoutPermissionChecks(User user)
Retreive the user's admin page history queue. |
Project |
UserProjectHistoryManager.getCurrentProject(int permission,
User user)
Gets the last viewed project that the user visted and still has permission to see. |
List<UserHistoryItem> |
UserIssueHistoryManager.getFullIssueHistoryWithoutPermissionChecks(User user)
Retreive the user's issue history queue. |
List<UserHistoryItem> |
UserIssueHistoryManager.getFullIssueHistoryWithPermissionChecks(User user)
Retreive the user's issue history queue. |
List<UserHistoryItem> |
UserHistoryManager.getHistory(UserHistoryItem.Type type,
User user)
Deprecated. use UserHistoryManager.getHistory(com.atlassian.jira.user.UserHistoryItem.Type, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
List<UserHistoryItem> |
UserProjectHistoryManager.getProjectHistoryWithoutPermissionChecks(User user)
Retreive the user's project history queue. |
List<Project> |
UserProjectHistoryManager.getProjectHistoryWithPermissionChecks(int permission,
User user)
Deprecated. since 4.4, use {#getProjectHistoryWithPermissionChecks(ProjectAction, User)} |
List<Issue> |
UserIssueHistoryManager.getShortIssueHistory(User user)
Retreive the first X (jira.max.issue.history.dropdown.items) Issues from the user's issue history queue. |
List<UserHistoryItem> |
UserQueryHistoryManager.getUserQueryHistory(User user)
Retrieve the user's query history queue. |
boolean |
UserHistoryManager.hasHistory(UserHistoryItem.Type type,
User user)
Deprecated. use UserHistoryManager.hasHistory(com.atlassian.jira.user.UserHistoryItem.Type, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
boolean |
UserIssueHistoryManager.hasIssueHistory(User user)
Determines whether the user has a current issue history. |
boolean |
UserProjectHistoryManager.hasProjectHistory(int permission,
User user)
Determines whether the user has a current project history. |
void |
UserHistoryManager.removeHistoryForUser(User user)
Deprecated. use UserHistoryManager.removeHistoryForUser(com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
| Uses of User in com.atlassian.jira.user.preferences |
|---|
| Methods in com.atlassian.jira.user.preferences with parameters of type User | |
|---|---|
com.atlassian.core.user.preferences.Preferences |
UserPreferencesManager.getPreferences(User user)
|
| Constructors in com.atlassian.jira.user.preferences with parameters of type User | |
|---|---|
JiraUserPreferences(User pUser)
Deprecated. |
|
| Uses of User in com.atlassian.jira.user.util |
|---|
| Methods in com.atlassian.jira.user.util that return User | |
|---|---|
static User |
OSUserConverter.convertToOSUser(com.atlassian.crowd.embedded.api.User crowdUser)
Convert a Crowd User to an OSUser If a user is already an OSUser the user will be returned unchanged. |
User |
UserUtil.createUserNoEvent(String username,
String password,
String email,
String fullname)
Deprecated. Please use UserUtil.createUserNoNotification(String, String, String, String). Since v4.3 |
User |
UserUtil.createUserWithEvent(String username,
String password,
String email,
String fullname,
int userEventType)
Deprecated. Please use UserUtil.createUserWithNotification(String, String, String, String, int). Since v4.3 |
User |
UserUtil.getUser(String userName)
Deprecated. Since v4.3. Use UserUtil.getUserObject(String) . |
User |
UserManager.getUser(String userName)
Deprecated. Since v4.3. Use UserManager.getUserObject(String). |
| Uses of User in com.atlassian.jira.util |
|---|
| Methods in com.atlassian.jira.util with parameters of type User | |
|---|---|
I18nHelper |
I18nHelper.BeanFactory.getInstance(User user)
Deprecated. since v4.3 |
| Uses of User in com.atlassian.jira.web |
|---|
| Methods in com.atlassian.jira.web with parameters of type User | |
|---|---|
boolean |
FieldVisibilityManager.isFieldHidden(User remoteUser,
String id)
Deprecated. Use FieldVisibilityManager.isFieldHidden(com.atlassian.crowd.embedded.api.User, String) instead. Since v4.3 |
boolean |
FieldVisibilityManager.isFieldHiddenInAllSchemes(String fieldId,
SearchContext context,
User user)
Deprecated. Use FieldVisibilityManager.isFieldHiddenInAllSchemes(String, com.atlassian.jira.issue.search.SearchContext, com.atlassian.crowd.embedded.api.User) instead. Since v4.3 |
| Uses of User in com.atlassian.jira.web.action.issue |
|---|
| Methods in com.atlassian.jira.web.action.issue with parameters of type User | |
|---|---|
FieldScreenRenderer |
IssueCreationHelperBean.createFieldScreenRenderer(User remoteUser,
Issue issueObject)
|
List<String> |
IssueCreationHelperBean.getProvidedFieldNames(User remoteUser,
Issue issueObject)
|
void |
IssueCreationHelperBean.updateIssueFromFieldValuesHolder(FieldScreenRenderer fieldScreenRenderer,
User remoteUser,
MutableIssue issueObject,
Map fieldValuesHolder)
|
| Uses of User in com.atlassian.jira.web.action.util |
|---|
| Methods in com.atlassian.jira.web.action.util with parameters of type User | |
|---|---|
List<IssueType> |
PopularIssueTypesUtil.getOtherIssueTypesForProject(Project project,
User user)
Returns the set difference between all available issue types for a project, and the popular issue types for a project/user context. |
PopularIssueTypesUtil.PopularIssueTypesHolder |
PopularIssueTypesUtil.getPopularAndOtherIssueTypesForProject(Project project,
User user)
Returns a holder that contains both - popular and other issue Types. |
List<IssueType> |
PopularIssueTypesUtil.getPopularIssueTypesForProject(Project project,
User user)
Returns the most popular non-subtask issue types used for issue creation in the specified project and by the specified user, within a designated time frame. |
| Uses of User in com.atlassian.jira.web.bean |
|---|
| Methods in com.atlassian.jira.web.bean with parameters of type User | |
|---|---|
abstract void |
MultiBulkMoveBean.validate(ErrorCollection errors,
BulkMoveOperation bulkMoveOperation,
User user)
|
| Uses of User in com.atlassian.jira.web.component |
|---|
| Methods in com.atlassian.jira.web.component with parameters of type User | |
|---|---|
List<ColumnLayoutItem> |
TableLayoutUtils.getColumns(User user,
List<String> fields)
Get the columns based off the a list of field names |
List<ColumnLayoutItem> |
TableLayoutUtils.getColumns(User user,
String applicationPropertyName)
Get the columns based off an application property |
List<ColumnLayoutItem> |
TableLayoutUtils.getColumns(User user,
String applicationPropertyName,
List<String> fields,
boolean addDefaults)
Get the columns based on a list of field names, and the default as defined in application properties with the given property name. |
| Uses of User in com.atlassian.jira.workflow |
|---|
| Methods in com.atlassian.jira.workflow that return User | |
|---|---|
protected User |
WorkflowFunctionUtils.getCaller(Map transientVars,
Map args)
Get the User executing this condition. |
User |
WorkflowManager.getRemoteUser(Map transientVars)
Deprecated. Please use WorkflowUtil.getCaller(java.util.Map) or WorkflowUtil.getCallerName(java.util.Map). Deprecated since 4.3 |
| Methods in com.atlassian.jira.workflow with parameters of type User | |
|---|---|
void |
WorkflowManager.copyAndDeleteDraftWorkflows(User user,
Set<JiraWorkflow> workflows)
Provided a set of workflows, this method will check, if the passed in workflows have any draft workflows linked to them. |
void |
WorkflowManager.createWorkflow(User user,
JiraWorkflow workflow)
|
| Uses of User in com.opensymphony.user |
|---|
| Methods in com.opensymphony.user that return User | |
|---|---|
User |
UserManager.createUser(String name)
Deprecated. Create a new User with given name. |
User |
UserManager.getUser(String name)
Deprecated. Return user with given name. |
| Methods in com.opensymphony.user that return types with arguments of type User | |
|---|---|
List<User> |
UserManager.getUsers()
Deprecated. Return all known Users from all CredentialProviders that allow listing. |
| Methods in com.opensymphony.user with parameters of type User | |
|---|---|
boolean |
Group.addUser(User user)
Deprecated. Add User to members of this Group. |
boolean |
Group.containsUser(User user)
Deprecated. Determine whether Group contains supplied User as member. |
boolean |
Group.removeUser(User user)
Deprecated. Remove User from members of this Group. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||