public class MockProjectComponentManager extends Object implements ProjectComponentManager
NO_COMPONENTS
Constructor and Description |
---|
MockProjectComponentManager() |
Modifier and Type | Method and Description |
---|---|
boolean |
containsName(String name,
Long projectId)
Implement this method in order to check whether component with specified name is stored.
|
org.ofbiz.core.entity.GenericValue |
convertToGenericValue(ProjectComponent projectComponent)
Converts the ProjectComponent to GenericValue form, provided as a transitional measure until GenericValue is
eradicated from the front end.
|
Collection<org.ofbiz.core.entity.GenericValue> |
convertToGenericValues(Collection<ProjectComponent> projectComponents)
Temporary method to allow conversion of a collection of ProjectComponent objects to a collection of GenericValues
representing a project component.
|
ProjectComponent |
create(String name,
String description,
String lead,
long assigneeType,
Long projectId)
Implement this method to create a new ProjectComponent object associated with the project with the ID specified
and with the values given.
|
void |
delete(Long componentId)
Implement this method to delete the component.
|
void |
deleteAllComponents(Long projectId)
Deletes all components in given project.
|
ProjectComponent |
find(Long id)
Implement this method to find the component with the specified ID.
|
Collection<ProjectComponent> |
findAll()
Implement this method to find all components.
|
Collection<ProjectComponent> |
findAllActiveForProject(Long projectId)
Returns all active components for given project.
|
Collection<ProjectComponent> |
findAllArchivedForProject(Long projectId)
Returns all archived components for given project.
|
Collection<ProjectComponent> |
findAllForProject(Long projectId)
Implement this method to find all components associated with the project with the ID specified.
|
Collection<String> |
findAllUniqueNamesForProjectObjects(Collection<Project> projects)
Returns all unique names of the components that belong to the passed projects.
|
Collection<String> |
findAllUniqueNamesForProjects(Collection<Long> projectIds)
Returns all unique names of components associated with all the projects with the ID-s specified.
|
ProjectComponent |
findByComponentName(Long projectId,
String componentName)
Finds the ProjectComponent with the given name in the project with the given id.
|
Collection<ProjectComponent> |
findByComponentNameCaseInSensitive(String componentName)
Finds all ProjectComponents with the given name with comparisons case insenstive.
|
Collection<ProjectComponent> |
findComponentsByIssue(Issue issue) |
Collection<org.ofbiz.core.entity.GenericValue> |
findComponentsByIssueGV(Issue issue)
This code used to live directly in the IssueImpl but it has been refactored into
the ProjectComponentManager to make things a little cleaner.
|
Collection<ProjectComponent> |
findComponentsByLead(String userName)
Retrieve a collection of ProjectComponents - where the lead of each component is the specified user.
|
Long |
findProjectIdForComponent(Long componentId)
Implement this method to look up the project ID for the given component ID.
|
List<ProjectComponent> |
getComponents(List<Long> ids)
Creates a list of ProjectComponent objects from the given list of IDs.
|
Collection<Long> |
getIssueIdsWithComponent(ProjectComponent component)
Returns a list of all Issue IDs with the given component.
|
ProjectComponent |
getProjectComponent(Long projectComponentId)
Returns the component with the given ID or null if not found.
|
int |
getTotalComponentCount() |
ProjectComponent |
update(MutableProjectComponent component)
Implement this method to update the component specified with the values given.
|
List<ChangeItemBean> |
updateIssueProjectComponents(Issue issue,
Collection<ProjectComponent> newValue)
Updates the list of components in issue
|
public ProjectComponent create(String name, String description, String lead, long assigneeType, Long projectId) throws IllegalArgumentException
ProjectComponentManager
ValidationErrorsException
.create
in interface ProjectComponentManager
name
- name of componentdescription
- description of componentlead
- user name associated with componentassigneeType
- assignee typeprojectId
- ID of project that component is associated withIllegalArgumentException
- if one or more arguments have invalid valuespublic ProjectComponent find(Long id) throws EntityNotFoundException
ProjectComponentManager
find
in interface ProjectComponentManager
id
- component ID to search forEntityNotFoundException
- if the component is not foundpublic ProjectComponent getProjectComponent(Long projectComponentId)
ProjectComponentManager
getProjectComponent
in interface ProjectComponentManager
projectComponentId
- component IDpublic Collection<ProjectComponent> findAllForProject(Long projectId)
ProjectComponentManager
findAllForProject
in interface ProjectComponentManager
projectId
- ID of project to search forpublic Collection<ProjectComponent> findAllActiveForProject(Long projectId)
ProjectComponentManager
findAllActiveForProject
in interface ProjectComponentManager
projectId
- id of the projectpublic Collection<ProjectComponent> findAllArchivedForProject(Long projectId)
ProjectComponentManager
findAllArchivedForProject
in interface ProjectComponentManager
projectId
- id of the projectpublic Collection<String> findAllUniqueNamesForProjects(Collection<Long> projectIds)
ProjectComponentManager
findAllUniqueNamesForProjects
in interface ProjectComponentManager
projectIds
- ID-s of project to search forpublic Collection<ProjectComponent> findAll()
ProjectComponentManager
findAll
in interface ProjectComponentManager
public int getTotalComponentCount()
getTotalComponentCount
in interface ProjectComponentManager
public Collection<String> findAllUniqueNamesForProjectObjects(Collection<Project> projects)
ProjectComponentManager
findAllUniqueNamesForProjectObjects
in interface ProjectComponentManager
projects
- projects to search inpublic List<ProjectComponent> getComponents(List<Long> ids) throws EntityNotFoundException
ProjectComponentManager
getComponents
in interface ProjectComponentManager
ids
- The List of ProjectComponent IDs.EntityNotFoundException
- if no ProjectComponent exists for any of the given IDs.public ProjectComponent update(MutableProjectComponent component) throws EntityNotFoundException
ProjectComponentManager
update
in interface ProjectComponentManager
component
- component to be updatedEntityNotFoundException
- if component is not foundpublic List<ChangeItemBean> updateIssueProjectComponents(Issue issue, Collection<ProjectComponent> newValue)
ProjectComponentManager
updateIssueProjectComponents
in interface ProjectComponentManager
issue
- updated issuenewValue
- list of componentspublic void delete(Long componentId) throws EntityNotFoundException
ProjectComponentManager
delete
in interface ProjectComponentManager
componentId
- component idEntityNotFoundException
- if the component is not foundpublic void deleteAllComponents(@Nonnull Long projectId)
ProjectComponentManager
deleteAllComponents
in interface ProjectComponentManager
projectId
- id of the project in which components will be deleted.public boolean containsName(String name, Long projectId)
ProjectComponentManager
containsName
in interface ProjectComponentManager
name
- component name, null will cause IllegalArgumentExceptionprojectId
- project IDpublic Long findProjectIdForComponent(Long componentId) throws EntityNotFoundException
ProjectComponentManager
findProjectIdForComponent
in interface ProjectComponentManager
componentId
- component IDEntityNotFoundException
- if component with the specified id cannot be foundpublic org.ofbiz.core.entity.GenericValue convertToGenericValue(ProjectComponent projectComponent)
ProjectComponentManager
convertToGenericValue
in interface ProjectComponentManager
projectComponent
- project componentpublic Collection<org.ofbiz.core.entity.GenericValue> convertToGenericValues(Collection<ProjectComponent> projectComponents)
ProjectComponentManager
convertToGenericValues
in interface ProjectComponentManager
projectComponents
- a collection of project componentspublic ProjectComponent findByComponentName(Long projectId, String componentName)
ProjectComponentManager
findByComponentName
in interface ProjectComponentManager
projectId
- id of the project.componentName
- name of the component.public Collection<ProjectComponent> findByComponentNameCaseInSensitive(String componentName)
ProjectComponentManager
findByComponentNameCaseInSensitive
in interface ProjectComponentManager
componentName
- name of the component.public Collection<ProjectComponent> findComponentsByLead(String userName)
ProjectComponentManager
findComponentsByLead
in interface ProjectComponentManager
userName
- the lead user namepublic Collection<ProjectComponent> findComponentsByIssue(Issue issue)
findComponentsByIssue
in interface ProjectComponentManager
issue
- find components on this issue@Nonnull public Collection<Long> getIssueIdsWithComponent(@Nonnull ProjectComponent component)
ProjectComponentManager
getIssueIdsWithComponent
in interface ProjectComponentManager
component
- the componentpublic Collection<org.ofbiz.core.entity.GenericValue> findComponentsByIssueGV(Issue issue)
ProjectComponentManager
findComponentsByIssueGV
in interface ProjectComponentManager
issue
- find components for this issueCopyright © 2002-2024 Atlassian. All Rights Reserved.