|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.atlassian.jira.bc.project.DefaultProjectService
public class DefaultProjectService
Nested Class Summary | |
---|---|
protected class |
DefaultProjectService.PermissionErrorResult
A GetProjectResult that indicates the calling user does not have permission to perform an action on a project. |
protected class |
DefaultProjectService.ProjectNotFoundResult
A GetProjectResult that indicates a project was not found. |
Nested classes/interfaces inherited from interface com.atlassian.jira.bc.project.ProjectService |
---|
ProjectService.AbstractProjectResult, ProjectService.AbstractProjectValidationResult, ProjectService.CreateProjectResult, ProjectService.CreateProjectValidationResult, ProjectService.DeleteProjectResult, ProjectService.DeleteProjectValidationResult, ProjectService.GetProjectResult, ProjectService.UpdateProjectSchemesValidationResult, ProjectService.UpdateProjectValidationResult |
Field Summary |
---|
Fields inherited from interface com.atlassian.jira.bc.project.ProjectService |
---|
DEFAULT_NAME_LENGTH, MAX_KEY_LENGTH, MAX_NAME_LENGTH, MIN_NAME_LENGTH, PROJECT_DESCRIPTION, PROJECT_KEY, PROJECT_LEAD, PROJECT_NAME, PROJECT_URL |
Constructor Summary | |
---|---|
DefaultProjectService(JiraAuthenticationContext jiraAuthenticationContext,
ProjectManager projectManager,
ApplicationProperties applicationProperties,
PermissionManager permissionManager,
PermissionSchemeManager permissionSchemeManager,
NotificationSchemeManager notificationSchemeManager,
IssueSecuritySchemeManager issueSecuritySchemeManager,
SchemeFactory schemeFactory,
WorkflowSchemeManager workflowSchemeManager,
IssueTypeScreenSchemeManager issueTypeScreenSchemeManager,
CustomFieldManager customFieldManager,
NodeAssociationStore nodeAssociationStore,
VersionManager versionManager,
ProjectComponentManager projectComponentManager,
SharePermissionDeleteUtils sharePermissionDeleteUtils,
AvatarManager avatarManager,
I18nHelper.BeanFactory i18nFactory,
WorkflowManager workflowManager,
UserManager userManager,
ProjectEventManager projectEventManager,
ProjectKeyStore projectKeyStore)
|
Method Summary | |
---|---|
Project |
createProject(ProjectService.CreateProjectValidationResult result)
Using the validation result from ProjectService.validateCreateProject(User, String, String,
String, String, String, Long) a new project will be created. |
ProjectService.DeleteProjectResult |
deleteProject(ApplicationUser user,
ProjectService.DeleteProjectValidationResult deleteProjectValidationResult)
Deletes the project provided by the deleteProjectValidationResult. |
ProjectService.DeleteProjectResult |
deleteProject(com.atlassian.crowd.embedded.api.User user,
ProjectService.DeleteProjectValidationResult result)
Deletes the project provided by the deleteProjectValidationResult. |
ServiceOutcome<List<Project>> |
getAllProjects(ApplicationUser user)
Used to retrieve a list of Project objects. |
ServiceOutcome<List<Project>> |
getAllProjects(com.atlassian.crowd.embedded.api.User user)
Used to retrieve a list of Project objects. |
ServiceOutcome<List<Project>> |
getAllProjectsForAction(ApplicationUser user,
ProjectAction action)
Used to retrieve a list of Project objects. |
ServiceOutcome<List<Project>> |
getAllProjectsForAction(com.atlassian.crowd.embedded.api.User user,
ProjectAction action)
Used to retrieve a list of Project objects. |
protected I18nHelper |
getI18nBean(ApplicationUser user)
|
protected I18nHelper |
getI18nBean(com.atlassian.crowd.embedded.api.User user)
Deprecated. since v6.1. Use getI18nBean(ApplicationUser) instead. |
int |
getMaximumKeyLength()
Used to retrieve the maximum length allowed for new project keys. |
int |
getMaximumNameLength()
Used to retrieve the maximum length allowed for new project names. |
ProjectService.GetProjectResult |
getProjectById(ApplicationUser user,
Long id)
Used to retrieve a Project object by id. |
ProjectService.GetProjectResult |
getProjectById(com.atlassian.crowd.embedded.api.User user,
Long id)
Used to retrieve a Project object by id. |
ProjectService.GetProjectResult |
getProjectByIdForAction(ApplicationUser user,
Long id,
ProjectAction action)
Used to retrieve a Project object by id providing the user can perform the
passed action on the project. |
ProjectService.GetProjectResult |
getProjectByIdForAction(com.atlassian.crowd.embedded.api.User user,
Long id,
ProjectAction action)
Used to retrieve a Project object by id providing the user can perform the
passed action on the project. |
ProjectService.GetProjectResult |
getProjectByKey(ApplicationUser user,
String key)
Used to retrieve a Project object by key. |
ProjectService.GetProjectResult |
getProjectByKey(com.atlassian.crowd.embedded.api.User user,
String key)
Used to retrieve a Project object by key. |
ProjectService.GetProjectResult |
getProjectByKeyForAction(ApplicationUser user,
String key,
ProjectAction action)
Used to retrieve a Project object by key providing the user can perform the
passed action on the project. |
ProjectService.GetProjectResult |
getProjectByKeyForAction(com.atlassian.crowd.embedded.api.User user,
String key,
ProjectAction action)
Used to retrieve a Project object by key providing the user can perform the
passed action on the project. |
long |
getProjectCount()
Used to retrieve the total number of Project s, regardless of the permission to see those projects. |
String |
getProjectKeyDescription()
Get the project key description from the properties file. |
protected JiraServiceContext |
getServiceContext(com.atlassian.crowd.embedded.api.User user,
ErrorCollection errorCollection)
|
boolean |
isValidAllProjectData(JiraServiceContext serviceContext,
String name,
String key,
String leadName,
String url,
Long assigneeType)
Validates the given project fields. |
boolean |
isValidAllProjectData(JiraServiceContext serviceContext,
String name,
String key,
String leadName,
String url,
Long assigneeType,
Long avatarId)
Validates the given project fields. |
boolean |
isValidProjectKey(JiraServiceContext serviceContext,
String key)
Validates the given project key. |
boolean |
isValidRequiredProjectData(JiraServiceContext serviceContext,
String name,
String key,
String leadName)
Validate the fields required for creating a project. |
protected ErrorCollection |
makeErrorCollection(ApplicationUser user,
String i18nKey,
ErrorCollection.Reason reason,
String... params)
Creates a new ErrorCollection instance for a single error message. |
protected ErrorCollection |
makeErrorCollection(com.atlassian.crowd.embedded.api.User user,
String i18nKey,
ErrorCollection.Reason reason,
String... params)
Deprecated. since v6.1. use makeErrorCollection(ApplicationUser, String, ErrorCollection.Reason, String...) when possible. |
Project |
updateProject(ProjectService.UpdateProjectValidationResult result)
Using the validation result from ProjectService.validateUpdateProject(User, String, String,
String, String, String, Long) this method performs the actual update on the project. |
void |
updateProjectSchemes(ProjectService.UpdateProjectSchemesValidationResult result,
Project project)
Updates the project schemes for a particular project, given a validation result and project to update. |
ProjectService.CreateProjectValidationResult |
validateCreateProject(com.atlassian.crowd.embedded.api.User user,
String name,
String key,
String description,
String leadName,
String url,
Long assigneeType)
This method needs to be called before creating a project to ensure all parameters are correct. |
ProjectService.CreateProjectValidationResult |
validateCreateProject(com.atlassian.crowd.embedded.api.User user,
String name,
String key,
String description,
String leadName,
String url,
Long assigneeType,
Long avatarId)
This method needs to be called before creating a project to ensure all parameters are correct. |
ProjectService.DeleteProjectValidationResult |
validateDeleteProject(ApplicationUser user,
String key)
Validation to delete a project is quite straightforward. |
ProjectService.DeleteProjectValidationResult |
validateDeleteProject(com.atlassian.crowd.embedded.api.User user,
String key)
Validation to delete a project is quite straightforward. |
ProjectService.UpdateProjectValidationResult |
validateUpdateProject(ApplicationUser user,
Project originalProject,
String name,
String key,
String description,
ApplicationUser lead,
String url,
Long assigneeType,
Long avatarId)
Validates updating a project's details. |
ServiceResult |
validateUpdateProject(ApplicationUser user,
String key)
Validates that the given user is authorised to update a project. |
ProjectService.UpdateProjectValidationResult |
validateUpdateProject(ApplicationUser user,
String name,
String key,
String description,
ApplicationUser lead,
String url,
Long assigneeType)
Validates updating a project's details. |
ProjectService.UpdateProjectValidationResult |
validateUpdateProject(ApplicationUser user,
String name,
String key,
String description,
ApplicationUser lead,
String url,
Long assigneeType,
Long avatarId)
Validates updating a project's details. |
ServiceResult |
validateUpdateProject(com.atlassian.crowd.embedded.api.User user,
String key)
Validates that the given user is authorised to update a project. |
ProjectService.UpdateProjectValidationResult |
validateUpdateProject(com.atlassian.crowd.embedded.api.User user,
String name,
String key,
String description,
String leadName,
String url,
Long assigneeType)
Validates updating a project's details. |
ProjectService.UpdateProjectValidationResult |
validateUpdateProject(com.atlassian.crowd.embedded.api.User user,
String name,
String key,
String description,
String leadName,
String url,
Long assigneeType,
Long avatarId)
Validates updating a project's details. |
ProjectService.UpdateProjectSchemesValidationResult |
validateUpdateProjectSchemes(ApplicationUser 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. |
ProjectService.UpdateProjectSchemesValidationResult |
validateUpdateProjectSchemes(com.atlassian.crowd.embedded.api.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. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultProjectService(JiraAuthenticationContext jiraAuthenticationContext, ProjectManager projectManager, ApplicationProperties applicationProperties, PermissionManager permissionManager, PermissionSchemeManager permissionSchemeManager, NotificationSchemeManager notificationSchemeManager, IssueSecuritySchemeManager issueSecuritySchemeManager, SchemeFactory schemeFactory, WorkflowSchemeManager workflowSchemeManager, IssueTypeScreenSchemeManager issueTypeScreenSchemeManager, CustomFieldManager customFieldManager, NodeAssociationStore nodeAssociationStore, VersionManager versionManager, ProjectComponentManager projectComponentManager, SharePermissionDeleteUtils sharePermissionDeleteUtils, AvatarManager avatarManager, I18nHelper.BeanFactory i18nFactory, WorkflowManager workflowManager, UserManager userManager, ProjectEventManager projectEventManager, ProjectKeyStore projectKeyStore)
Method Detail |
---|
public ProjectService.CreateProjectValidationResult validateCreateProject(com.atlassian.crowd.embedded.api.User user, String name, String key, String description, String leadName, String url, Long assigneeType)
ProjectService
AssigneeTypes.PROJECT_LEAD
,
AssigneeTypes.UNASSIGNED
, or null to let JIRA decide on the best default
assignee. UNASSIGNED will also only be valid, if unassigned issues are enabled in the General Configuration.
The method will return a ProjectService.CreateProjectValidationResult
which
contains an ErrorCollection with any potential errors and all the project's details.
validateCreateProject
in interface ProjectService
user
- The user trying to create a projectname
- The name of the new projectkey
- The project key of the new projectdescription
- An optional description for the projectleadName
- The username of the lead developer for the projecturl
- An optional URL for the new projectassigneeType
- Optional default assignee for issues created in this project (null for default).
public ServiceResult validateUpdateProject(ApplicationUser user, String key)
ProjectService
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectkey
- The project key of the project to update.
public ProjectService.UpdateProjectValidationResult validateUpdateProject(ApplicationUser user, String name, String key, String description, ApplicationUser lead, String url, Long assigneeType)
ProjectService
ProjectService.validateCreateProject(User,
String, String, String, String, String, Long)
method. The only difference is that the project key will obviously
not be validated.
A project can be updated by any user with the global admin permission or project admin permission for the project
in question.
WARNING: In 6.0-6.0.5, this method is available but does not work properly for renamed users (JRA-33843).
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectname
- The name of the new projectkey
- The project key of the project to update.description
- An optional description for the projectlead
- The lead developer for the projecturl
- An optional URL for the projectassigneeType
- The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.
public ProjectService.UpdateProjectValidationResult validateUpdateProject(ApplicationUser user, String name, String key, String description, ApplicationUser lead, String url, Long assigneeType, Long avatarId)
ProjectService
ProjectService.validateCreateProject(User,
String, String, String, String, String, Long)
method. The only difference is that the project key will obviously
not be validated.
A project can be updated by any user with the global admin permission or project admin permission for the project
in question.
WARNING: In 6.0-6.0.5, this method is available but does not work properly for renamed users (JRA-33843).
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectname
- The name of the new projectkey
- The project key of the project to update.description
- An optional description for the projectlead
- The lead developer for the projecturl
- An optional URL for the projectassigneeType
- The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.avatarId
- the id of an existing avatar.
public ProjectService.DeleteProjectValidationResult validateDeleteProject(ApplicationUser user, String key)
ProjectService
validateDeleteProject
in interface ProjectService
user
- The user trying to delete a projectkey
- The key of the project to delete
public ProjectService.DeleteProjectResult deleteProject(ApplicationUser user, ProjectService.DeleteProjectValidationResult deleteProjectValidationResult)
ProjectService
deleteProject
in interface ProjectService
user
- The user trying to delete a projectdeleteProjectValidationResult
- Result from the validation, which also contains all the project's details.
public ProjectService.UpdateProjectSchemesValidationResult validateUpdateProjectSchemes(ApplicationUser user, Long permissionSchemeId, Long notificationSchemeId, Long issueSecuritySchemeId)
ProjectService
validateUpdateProjectSchemes
in interface ProjectService
permissionSchemeId
- The permission scheme that the new project should usenotificationSchemeId
- The notification scheme that the new project should use. Optional.issueSecuritySchemeId
- The issue security scheme that the new project should use. Optional.
public ProjectService.GetProjectResult getProjectById(ApplicationUser user, Long id)
ProjectService
Project
object by id. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the id
specified can be found, or if the user making the request does not have the BROWSE project permission for the
project. In both of these cases, the errorCollection in the result object will contain an appropriate error
message.
getProjectById
in interface ProjectService
user
- The user retrieving the project.id
- The id of the project.
public ProjectService.GetProjectResult getProjectByIdForAction(ApplicationUser user, Long id, ProjectAction action)
ProjectService
Project
object by id providing the user can perform the
passed action on the project. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
id specified can be found, or if the user making the request cannot perform the passed action on the project.
In both of these cases, the errorCollection in the result object will contain an appropriate error message.
getProjectByIdForAction
in interface ProjectService
user
- The user retrieving the project.id
- The id of the project.action
- the action the user must be able to perform on the project.
public ProjectService.GetProjectResult getProjectByKey(ApplicationUser user, String key)
ProjectService
Project
object by key. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
key specified can be found, or if the user making the request does not have the BROWSE project permission for the
project. In both of these cases, the errorCollection in the result object will contain an appropriate error
message.
getProjectByKey
in interface ProjectService
user
- The user retrieving the project.key
- The key of the project.
public ProjectService.GetProjectResult getProjectByKeyForAction(ApplicationUser user, String key, ProjectAction action)
ProjectService
Project
object by key providing the user can perform the
passed action on the project. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
key specified can be found, or if the user making the request cannot perform the passed action on the project.
In both of these cases, the errorCollection in the result object will contain an appropriate error message.
getProjectByKeyForAction
in interface ProjectService
user
- The user retrieving the project.key
- The key of the project.action
- the action the user must be able to perform on the project.
public ServiceOutcome<List<Project>> getAllProjects(ApplicationUser user)
ProjectService
Project
objects. This method returns a
ServiceOutcome
containing a list of projects. The list will be empty, if the user does not have
the BROWSE project permission for any project or no projects are visible when using anonymous access.
getAllProjects
in interface ProjectService
user
- The user retrieving the list of projects or NULL when using anonymous access.
public ServiceOutcome<List<Project>> getAllProjectsForAction(ApplicationUser user, ProjectAction action)
ProjectService
Project
objects. This method returns a
ServiceOutcome
containing a list of projects that the user can perform the passed
action on. The list will be empty if no projects match the passed action.
getAllProjectsForAction
in interface ProjectService
user
- The user retrieving the list of projects or NULL when using anonymous access.action
- the action the user must be able to perform on the returned projects.
public ProjectService.CreateProjectValidationResult validateCreateProject(com.atlassian.crowd.embedded.api.User user, String name, String key, String description, String leadName, String url, Long assigneeType, Long avatarId)
ProjectService
AssigneeTypes.PROJECT_LEAD
,
AssigneeTypes.UNASSIGNED
, or null to let JIRA decide on the best default
assignee. UNASSIGNED will also only be valid, if unassigned issues are enabled in the General Configuration.
The method will return a ProjectService.CreateProjectValidationResult
which
contains an ErrorCollection with any potential errors and all the project's details.
validateCreateProject
in interface ProjectService
user
- The user trying to create a projectname
- The name of the new projectkey
- The project key of the new projectdescription
- An optional description for the projectleadName
- The username of the lead developer for the projecturl
- An optional URL for the new projectassigneeType
- Optional default assignee for issues created in this project (null for default).avatarId
- the id of an avatar.
protected JiraServiceContext getServiceContext(com.atlassian.crowd.embedded.api.User user, ErrorCollection errorCollection)
public Project createProject(ProjectService.CreateProjectValidationResult result)
ProjectService
ProjectService.validateCreateProject(User, String, String,
String, String, String, Long)
a new project will be created. This method will throw an IllegalStateException if
the validation result contains any errors.
Project creation involves creating the project itself and setting some defaults for workflow schemes and issue
type screen schemes.
createProject
in interface ProjectService
result
- Result from the validation, which also contains all the project's details.
public ProjectService.UpdateProjectValidationResult validateUpdateProject(com.atlassian.crowd.embedded.api.User user, String name, String key, String description, String leadName, String url, Long assigneeType)
ProjectService
ProjectService.validateCreateProject(User,
String, String, String, String, String, Long)
method. The only difference is that the project key will obviously
not be validated.
A project can be updated by any user with the global admin permission or project admin permission for the project
in question.
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectname
- The name of the new projectkey
- The project key of the project to update.description
- An optional description for the projectleadName
- The username of the lead developer for the projecturl
- An optional URL for the projectassigneeType
- The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.
public ServiceResult validateUpdateProject(com.atlassian.crowd.embedded.api.User user, String key)
ProjectService
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectkey
- The project key of the project to update.
public ProjectService.UpdateProjectValidationResult validateUpdateProject(ApplicationUser user, Project originalProject, String name, String key, String description, ApplicationUser lead, String url, Long assigneeType, Long avatarId)
ProjectService
ProjectService.validateCreateProject(User,
String, String, String, String, String, Long)
method.
A project can be updated by any user with the global admin permission or project admin permission for the project
in question. A project key can be updated by any user with the global admin permission.
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectoriginalProject
- The project to update with the values put in arguments (Project
object should not be modified)name
- The name of the new projectkey
- The new project keydescription
- An optional description for the projectlead
- The user key for the lead developer for the projecturl
- An optional URL for the projectassigneeType
- The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.
public ProjectService.UpdateProjectValidationResult validateUpdateProject(com.atlassian.crowd.embedded.api.User user, String name, String key, String description, String leadName, String url, Long assigneeType, Long avatarId)
ProjectService
ProjectService.validateCreateProject(User,
String, String, String, String, String, Long)
method. The only difference is that the project key will obviously
not be validated.
A project can be updated by any user with the global admin permission or project admin permission for the project
in question.
validateUpdateProject
in interface ProjectService
user
- The user trying to update a projectname
- The name of the new projectkey
- The project key of the project to update.description
- An optional description for the projectleadName
- The username of the lead developer for the projecturl
- An optional URL for the projectassigneeType
- The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.avatarId
- the id of an existing avatar.
public Project updateProject(ProjectService.UpdateProjectValidationResult result)
ProjectService
ProjectService.validateUpdateProject(User, String, String,
String, String, String, Long)
this method performs the actual update on the project.
updateProject
in interface ProjectService
result
- Result from the validation, which also contains all the project's details.
public ProjectService.UpdateProjectSchemesValidationResult validateUpdateProjectSchemes(com.atlassian.crowd.embedded.api.User user, Long permissionSchemeId, Long notificationSchemeId, Long issueSecuritySchemeId)
ProjectService
validateUpdateProjectSchemes
in interface ProjectService
permissionSchemeId
- The permission scheme that the new project should usenotificationSchemeId
- The notification scheme that the new project should use. Optional.issueSecuritySchemeId
- The issue security scheme that the new project should use. Optional.
public void updateProjectSchemes(ProjectService.UpdateProjectSchemesValidationResult result, Project project)
ProjectService
updateProjectSchemes
in interface ProjectService
result
- Result from the validation, which also contains all the schemes details.project
- The project which will have its schemes updated.public boolean isValidAllProjectData(JiraServiceContext serviceContext, String name, String key, String leadName, String url, Long assigneeType)
ProjectService
JiraServiceContext
.
isValidAllProjectData
in interface ProjectService
serviceContext
- containing the ErrorCollection that will be populated with any validation errors that are
encounteredname
- the name of the project @Nonnullkey
- the key of the project @NonnullleadName
- the username of the project lead @Nonnullurl
- the project URL (optional)assigneeType
- the default assignee type (optional - only appears on some forms)
public boolean isValidAllProjectData(JiraServiceContext serviceContext, String name, String key, String leadName, String url, Long assigneeType, Long avatarId)
ProjectService
JiraServiceContext
.
isValidAllProjectData
in interface ProjectService
serviceContext
- containing the ErrorCollection that will be populated with any validation errors that are
encounteredname
- the name of the project @Nonnullkey
- the key of the project @NonnullleadName
- the username of the project lead @Nonnullurl
- the project URL (optional)assigneeType
- the default assignee type (optional - only appears on some forms)avatarId
- the id of the avatar (null indicates default avatar)
public boolean isValidRequiredProjectData(JiraServiceContext serviceContext, String name, String key, String leadName)
ProjectService
JiraServiceContext
.
isValidRequiredProjectData
in interface ProjectService
serviceContext
- containing the ErrorCollection that will be populated with any validation errors that are
encounteredname
- the name of the project @Nonnullkey
- the key of the project @NonnullleadName
- the username of the project lead @Nonnull
public boolean isValidProjectKey(JiraServiceContext serviceContext, String key)
ProjectService
JiraServiceContext
.
isValidProjectKey
in interface ProjectService
serviceContext
- containing the ErrorCollection that will be populated with any validation errors that are
encounteredkey
- The key to validate @Nonnull
public String getProjectKeyDescription()
ProjectService
getProjectKeyDescription
in interface ProjectService
public ProjectService.GetProjectResult getProjectByIdForAction(com.atlassian.crowd.embedded.api.User user, Long id, ProjectAction action)
ProjectService
Project
object by id providing the user can perform the
passed action on the project. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
id specified can be found, or if the user making the request cannot perform the passed action on the project.
In both of these cases, the errorCollection in the result object will contain an appropriate error message.
getProjectByIdForAction
in interface ProjectService
user
- The user retrieving the project.id
- The id of the project.action
- the action the user must be able to perform on the project.
public ProjectService.GetProjectResult getProjectById(com.atlassian.crowd.embedded.api.User user, Long id)
ProjectService
Project
object by id. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the id
specified can be found, or if the user making the request does not have the BROWSE project permission for the
project. In both of these cases, the errorCollection in the result object will contain an appropriate error
message.
getProjectById
in interface ProjectService
user
- The user retrieving the project.id
- The id of the project.
public ProjectService.GetProjectResult getProjectByKey(com.atlassian.crowd.embedded.api.User user, String key)
ProjectService
Project
object by key. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
key specified can be found, or if the user making the request does not have the BROWSE project permission for the
project. In both of these cases, the errorCollection in the result object will contain an appropriate error
message.
getProjectByKey
in interface ProjectService
user
- The user retrieving the project.key
- The key of the project.
public ProjectService.GetProjectResult getProjectByKeyForAction(com.atlassian.crowd.embedded.api.User user, String key, ProjectAction action)
ProjectService
Project
object by key providing the user can perform the
passed action on the project. This method returns a ProjectService.GetProjectResult
. The project will be null if no project for the
key specified can be found, or if the user making the request cannot perform the passed action on the project.
In both of these cases, the errorCollection in the result object will contain an appropriate error message.
getProjectByKeyForAction
in interface ProjectService
user
- The user retrieving the project.key
- The key of the project.action
- the action the user must be able to perform on the project.
public int getMaximumNameLength()
ProjectService
getMaximumNameLength
in interface ProjectService
public int getMaximumKeyLength()
ProjectService
getMaximumKeyLength
in interface ProjectService
public long getProjectCount()
ProjectService
Project
s, regardless of the permission to see those projects.
getProjectCount
in interface ProjectService
public ServiceOutcome<List<Project>> getAllProjects(com.atlassian.crowd.embedded.api.User user)
ProjectService
Project
objects. This method returns a
ServiceOutcome
containing a list of projects. The list will be empty, if the user does not have
the BROWSE project permission for any project or no projects are visible when using anonymous access.
getAllProjects
in interface ProjectService
user
- The user retrieving the list of projects or NULL when using anonymous access.
public ServiceOutcome<List<Project>> getAllProjectsForAction(com.atlassian.crowd.embedded.api.User user, ProjectAction action)
ProjectService
Project
objects. This method returns a
ServiceOutcome
containing a list of projects that the user can perform the passed
action on. The list will be empty if no projects match the passed action.
getAllProjectsForAction
in interface ProjectService
user
- The user retrieving the list of projects or NULL when using anonymous access.action
- the action the user must be able to perform on the returned projects.
public ProjectService.DeleteProjectValidationResult validateDeleteProject(com.atlassian.crowd.embedded.api.User user, String key)
ProjectService
validateDeleteProject
in interface ProjectService
user
- The user trying to delete a projectkey
- The key of the project to delete
public ProjectService.DeleteProjectResult deleteProject(com.atlassian.crowd.embedded.api.User user, ProjectService.DeleteProjectValidationResult result)
ProjectService
deleteProject
in interface ProjectService
user
- The user trying to delete a projectresult
- Result from the validation, which also contains all the project's details.
@Deprecated protected final I18nHelper getI18nBean(com.atlassian.crowd.embedded.api.User user)
getI18nBean(ApplicationUser)
instead.
protected final I18nHelper getI18nBean(ApplicationUser user)
@Deprecated protected final ErrorCollection makeErrorCollection(com.atlassian.crowd.embedded.api.User user, String i18nKey, ErrorCollection.Reason reason, String... params)
makeErrorCollection(ApplicationUser, String, ErrorCollection.Reason, String...)
when possible.
user
- the User for whom the message will be i18n'edi18nKey
- a String containing an i18n keyreason
- a Reason codeparams
- a String array containing the i18n params @return a new ErrorCollection
protected final ErrorCollection makeErrorCollection(ApplicationUser user, String i18nKey, ErrorCollection.Reason reason, String... params)
user
- the ApplicationUser for whom the message will be i18n'edi18nKey
- a String containing an i18n keyreason
- a Reason codeparams
- a String array containing the i18n params @return a new ErrorCollection
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |