|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.atlassian.jira.project.AbstractProjectManager
public abstract class AbstractProjectManager
| Constructor Summary | |
|---|---|
AbstractProjectManager(UserManager userManager,
ApplicationProperties applicationProperties)
|
|
| Method Summary | |
|---|---|
List<Project> |
convertToProjectObjects(Collection<Long> projectIds)
Converts a collection of projectIds to a list of projects. |
List<org.ofbiz.core.entity.GenericValue> |
convertToProjects(Collection<Long> projectIds)
Converts a collection of projectIds to a collection of projects. |
Project |
createProject(String name,
String key,
String description,
String lead,
String url,
Long assigneeType)
Creates the project in the database, and adds default project roles for this project. |
com.atlassian.crowd.embedded.api.User |
getDefaultAssignee(org.ofbiz.core.entity.GenericValue project,
org.ofbiz.core.entity.GenericValue component)
This function returns the default assignee if the system has been setup incorrectly then it will throw an error The isDefaultAssignee(GenericValue, GenericValue) checks if there is a valid default assignee |
com.atlassian.crowd.embedded.api.User |
getDefaultAssignee(Project project,
Collection<ProjectComponent> components)
Gets the default assignee for an issue given its project and list of Components. |
com.atlassian.crowd.embedded.api.User |
getDefaultAssignee(Project project,
ProjectComponent component)
Gets the default assignee for a project and/or component depending on if a component was specified. |
long |
getNextId(Project project)
Get the next issue ID from this project (transactional). |
org.ofbiz.core.entity.GenericValue |
getProject(org.ofbiz.core.entity.GenericValue issue)
Returns a project GenericValue that an issue is in. |
org.ofbiz.core.entity.GenericValue |
getProjectCategoryByName(String projectCategoryName)
Find a project category by name. |
org.ofbiz.core.entity.GenericValue |
getProjectCategoryByNameIgnoreCase(String projectCategoryName)
Find a project category by name ignoring the case of the category name. |
ProjectCategory |
getProjectCategoryObjectByName(String projectCategoryName)
Find a project category by name. |
ProjectCategory |
getProjectCategoryObjectByNameIgnoreCase(String projectCategoryName)
Find a project category by name ignoring the case of the category name. |
boolean |
isDefaultAssignee(org.ofbiz.core.entity.GenericValue project)
Checks if there is a valid default assignee for a given project. |
boolean |
isDefaultAssignee(org.ofbiz.core.entity.GenericValue project,
org.ofbiz.core.entity.GenericValue component)
This function checks if there is a valid default assignee set in the system If this returns false then the getDefaultAssignee(GenericValue, GenericValue) will throw an exception |
Project |
updateProject(Project updatedProject,
String name,
String description,
String lead,
String url,
Long assigneeType)
Updates the project provided with the new attributes passed in. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public AbstractProjectManager(UserManager userManager,
ApplicationProperties applicationProperties)
| Method Detail |
|---|
public org.ofbiz.core.entity.GenericValue getProject(org.ofbiz.core.entity.GenericValue issue)
ProjectManagerGenericValue that an issue is in.
getProject in interface ProjectManagerissue - the issue.
public long getNextId(Project project)
ProjectManager
getNextId in interface ProjectManagerproject - The Project
public org.ofbiz.core.entity.GenericValue getProjectCategoryByName(String projectCategoryName)
throws DataAccessException
ProjectManager
getProjectCategoryByName in interface ProjectManagerprojectCategoryName - Name of the Project Category
GenericValue
DataAccessException - If any errors occur accessing the DB.
public ProjectCategory getProjectCategoryObjectByName(String projectCategoryName)
throws DataAccessException
ProjectManager
getProjectCategoryObjectByName in interface ProjectManagerprojectCategoryName - Name of the Project Category
DataAccessException
public ProjectCategory getProjectCategoryObjectByNameIgnoreCase(String projectCategoryName)
throws DataAccessException
ProjectManager
getProjectCategoryObjectByNameIgnoreCase in interface ProjectManagerprojectCategoryName - Name of the Project Category
DataAccessException
public org.ofbiz.core.entity.GenericValue getProjectCategoryByNameIgnoreCase(String projectCategoryName)
throws DataAccessException
ProjectManager
getProjectCategoryByNameIgnoreCase in interface ProjectManagerprojectCategoryName - Name of the Project Category
GenericValue
DataAccessException - If any errors occur accessing the DB.
public boolean isDefaultAssignee(org.ofbiz.core.entity.GenericValue project,
org.ofbiz.core.entity.GenericValue component)
getDefaultAssignee(GenericValue, GenericValue) will throw an exception
isDefaultAssignee in interface ProjectManagerproject - component -
ProjectManager.isDefaultAssignee(org.ofbiz.core.entity.GenericValue) is truepublic boolean isDefaultAssignee(org.ofbiz.core.entity.GenericValue project)
ProjectManager
isDefaultAssignee in interface ProjectManagerproject -
public List<org.ofbiz.core.entity.GenericValue> convertToProjects(Collection<Long> projectIds)
ProjectManager
convertToProjects in interface ProjectManagerprojectIds - a Collection of Longs
GenericValues. Null if input is emptypublic List<Project> convertToProjectObjects(Collection<Long> projectIds)
ProjectManagerWill return null if incoming collection is null.
The returned list of Project Objects will have the same sort order as the incoming collection of IDs.
convertToProjectObjects in interface ProjectManagerprojectIds - a Collection of Project IDs
public com.atlassian.crowd.embedded.api.User getDefaultAssignee(Project project,
ProjectComponent component)
ProjectManager
getDefaultAssignee in interface ProjectManagerproject - projectcomponent - component
public com.atlassian.crowd.embedded.api.User getDefaultAssignee(Project project,
Collection<ProjectComponent> components)
throws DefaultAssigneeException
ProjectManagerIf the default assignee configuration is invalid, then a DefaultAssigneeException is thrown. This could be because the default is unassigned, and unassigned issues are not allowed, or because the default user does not have permission to be assigned to issues in this project.
getDefaultAssignee in interface ProjectManagerproject - projectcomponents - The components
DefaultAssigneeException - If the default assignee is invalid (eg user does not have assign permission) .
public com.atlassian.crowd.embedded.api.User getDefaultAssignee(org.ofbiz.core.entity.GenericValue project,
org.ofbiz.core.entity.GenericValue component)
isDefaultAssignee(GenericValue, GenericValue) checks if there is a valid default assignee
getDefaultAssignee in interface ProjectManagerproject - component -
User
public Project createProject(String name,
String key,
String description,
String lead,
String url,
Long assigneeType)
ProjectManager
createProject in interface ProjectManagername - The name of the new projectkey - The project key of the new projectdescription - An optional description for the projectlead - The lead developer for the projecturl - An optional URL for the new projectassigneeType - The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.
public Project updateProject(Project updatedProject,
String name,
String description,
String lead,
String url,
Long assigneeType)
ProjectManager
updateProject in interface ProjectManagerupdatedProject - The project to be updated.name - The name for the updated projectdescription - An optional description for the projectlead - The lead developer for the projecturl - An optional URL for the updated projectassigneeType - The default assignee for issues created in this project. May be either project lead, or
unassigned if unassigned issues are enabled.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||