Uses of Interface
com.atlassian.jira.bc.project.component.ProjectComponent

Packages that use ProjectComponent
com.atlassian.jira.bc.project.component   
com.atlassian.jira.issue   
com.atlassian.jira.project   
com.atlassian.jira.user.util   
 

Uses of ProjectComponent in com.atlassian.jira.bc.project.component
 

Classes in com.atlassian.jira.bc.project.component that implement ProjectComponent
 class MutableProjectComponent
           
 

Methods in com.atlassian.jira.bc.project.component that return ProjectComponent
 ProjectComponent ProjectComponentManager.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.
 ProjectComponent ProjectComponentService.create(com.atlassian.crowd.embedded.api.User user, ErrorCollection errorCollection, String name, String description, String lead, Long projectId)
           
 ProjectComponent ProjectComponentService.create(User user, ErrorCollection errorCollection, String name, String description, String lead, Long projectId)
           
 ProjectComponent ProjectComponentService.find(ErrorCollection errorCollection, Long id)
          Deprecated. Use ProjectComponentService.find(User, com.atlassian.jira.util.ErrorCollection, Long) instead. This methods completely ignores the user calling and thus serves components for such project a person may have no access rights to see
 ProjectComponent ProjectComponentManager.find(Long id)
          Implement this method to find the component with the specified ID.
 ProjectComponent ProjectComponentService.find(com.atlassian.crowd.embedded.api.User user, ErrorCollection errorCollection, Long id)
           
 ProjectComponent ProjectComponentService.find(User user, ErrorCollection errorCollection, Long id)
           
 ProjectComponent ProjectComponentManager.findByComponentName(Long projectId, String componentName)
          Finds the ProjectComponent with the given name in the project with the given id.
 ProjectComponent ProjectComponentManager.update(MutableProjectComponent component)
          Implement this method to update the component specified with the values given.
 ProjectComponent ProjectComponentService.update(com.atlassian.crowd.embedded.api.User user, ErrorCollection errorCollection, MutableProjectComponent component)
           
 ProjectComponent ProjectComponentService.update(User user, ErrorCollection errorCollection, MutableProjectComponent component)
           
 

Methods in com.atlassian.jira.bc.project.component that return types with arguments of type ProjectComponent
 Collection<ProjectComponent> ProjectComponentManager.findAll()
          Implement this method to find all components.
 Collection<ProjectComponent> ProjectComponentService.findAllForProject(ErrorCollection errorCollection, Long projectId)
           
 Collection<ProjectComponent> ProjectComponentManager.findAllForProject(Long projectId)
          Implement this method to find all components associated with the project with the ID specified.
 Collection<ProjectComponent> ProjectComponentManager.findByComponentNameCaseInSensitive(String componentName)
          Finds all ProjectComponents with the given name with comparisons case insenstive.
 Collection<ProjectComponent> ProjectComponentManager.findComponentsByIssue(Issue issue)
           
 Collection<ProjectComponent> ProjectComponentManager.findComponentsByLead(String userName)
          Retrieve a collection of ProjectComponents - where the lead of each component is the specified user.
 List<ProjectComponent> ProjectComponentManager.getComponents(List<Long> ids)
          Creates a list of ProjectComponent objects from the given list of IDs.
 

Methods in com.atlassian.jira.bc.project.component with parameters of type ProjectComponent
 org.ofbiz.core.entity.GenericValue ProjectComponentManager.convertToGenericValue(ProjectComponent projectComponent)
          Deprecated. don't use GenericValue use the ProjectComponent instead.
static MutableProjectComponent MutableProjectComponent.copy(ProjectComponent c)
          Copy given component
 

Method parameters in com.atlassian.jira.bc.project.component with type arguments of type ProjectComponent
 Collection<org.ofbiz.core.entity.GenericValue> ProjectComponentManager.convertToGenericValues(Collection<ProjectComponent> projectComponents)
          Deprecated. don't use GenericValue use the ProjectComponent instead.
 

Uses of ProjectComponent in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue that return types with arguments of type ProjectComponent
 Collection<ProjectComponent> Issue.getComponentObjects()
           
 

Uses of ProjectComponent in com.atlassian.jira.project
 

Methods in com.atlassian.jira.project that return types with arguments of type ProjectComponent
 Collection<ProjectComponent> Project.getProjectComponents()
          Returns the components for this Project.
 

Methods in com.atlassian.jira.project with parameters of type ProjectComponent
 com.atlassian.crowd.embedded.api.User ProjectManager.getDefaultAssignee(Project project, ProjectComponent component)
          Deprecated. Use ProjectManager.getDefaultAssignee(Project, java.util.Collection) which allows for multiple components. Since v4.4.
 

Method parameters in com.atlassian.jira.project with type arguments of type ProjectComponent
 com.atlassian.crowd.embedded.api.User ProjectManager.getDefaultAssignee(Project project, Collection<ProjectComponent> components)
          Gets the default assignee for an issue given its project and list of Components.
 

Uses of ProjectComponent in com.atlassian.jira.user.util
 

Methods in com.atlassian.jira.user.util that return types with arguments of type ProjectComponent
 Collection<ProjectComponent> UserUtil.getComponentsUserLeads(User user)
          Deprecated. Use UserUtil.getComponentsUserLeads(com.atlassian.crowd.embedded.api.User) instead. Since v4.3
 Collection<ProjectComponent> UserUtil.getComponentsUserLeads(com.atlassian.crowd.embedded.api.User user)
          Retrieve a collection of ProjectComponents - where the lead of each component is the specified user.
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.