Modifier and Type | Method and Description |
---|---|
void |
SelectComponentAssigneesUtil.setComponentAssigneeTypes(Map<ProjectComponent,Long> componentAssigneeTypes) |
void |
SelectComponentAssigneesUtilImpl.setComponentAssigneeTypes(Map<ProjectComponent,Long> componentAssigneeTypes) |
Modifier and Type | Class and Description |
---|---|
class |
MockProjectComponent |
class |
MutableProjectComponent |
class |
ProjectComponentImpl
Standard implementation of the
ProjectComponent . |
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
ProjectComponentFactory.build(org.ofbiz.core.entity.GenericValue gv) |
protected ProjectComponent |
DefaultProjectComponentManager.convertToProjectComponent(MutableProjectComponent value)
Convert the specified MutableProjectComponent to a ProjectComponent object.
|
ProjectComponent |
ComponentConverter.convertToProjectComponent(MutableProjectComponent value)
Convert the specified MutableProjectComponent to a ProjectComponent object.
|
ProjectComponent |
DefaultProjectComponentService.create(ApplicationUser user,
ErrorCollection errorCollection,
String name,
String description,
String lead,
Long projectId)
Create a new ProjectComponent object associated with the project with the ID specified and with the values given.
|
ProjectComponent |
ProjectComponentService.create(ApplicationUser user,
ErrorCollection errorCollection,
String name,
String description,
String lead,
Long projectId)
Deprecated.
since 6.3, use
#create(com.atlassian.crowd.embedded.api.User, com.atlassian.jira.util.ErrorCollection, String, String, String, Long, Long) instead |
ProjectComponent |
DefaultProjectComponentService.create(ApplicationUser user,
ErrorCollection errorCollection,
String name,
String description,
String lead,
Long projectId,
Long assigneeType) |
ProjectComponent |
ProjectComponentService.create(ApplicationUser user,
ErrorCollection errorCollection,
String name,
String description,
String lead,
Long projectId,
Long assigneeType)
Create a project component with assignee type set as provided.
|
ProjectComponent |
DefaultProjectComponentManager.create(String name,
String description,
String lead,
long assigneeType,
Long projectId)
Create a new ProjectComponent object associated with the project with the ID specified and with the values given.
|
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 |
DefaultProjectComponentService.find(ApplicationUser user,
ErrorCollection errorCollection,
Long id) |
ProjectComponent |
ProjectComponentService.find(ApplicationUser user,
ErrorCollection errorCollection,
Long id) |
ProjectComponent |
DefaultProjectComponentManager.find(Long id)
Find the component with the specified ID
|
ProjectComponent |
ProjectComponentManager.find(Long id)
Implement this method to find the component with the specified ID.
|
ProjectComponent |
DefaultProjectComponentManager.findByComponentName(Long projectId,
String componentName) |
ProjectComponent |
ProjectComponentManager.findByComponentName(Long projectId,
String componentName)
Finds the ProjectComponent with the given name in the project with the given id.
|
ProjectComponent |
DefaultProjectComponentManager.getProjectComponent(Long projectComponentId) |
ProjectComponent |
ProjectComponentStore.getProjectComponent(Long projectComponentId)
Returns the ProjectComponent for the given ID, or null.
|
ProjectComponent |
CachingProjectComponentStore.getProjectComponent(Long projectComponentId) |
ProjectComponent |
OfBizProjectComponentStore.getProjectComponent(Long projectComponentId) |
ProjectComponent |
ProjectComponentManager.getProjectComponent(Long projectComponentId)
Returns the component with the given ID or null if not found.
|
ProjectComponent |
DefaultProjectComponentService.update(ApplicationUser user,
ErrorCollection errorCollection,
MutableProjectComponent component) |
ProjectComponent |
ProjectComponentService.update(ApplicationUser user,
ErrorCollection errorCollection,
MutableProjectComponent component) |
ProjectComponent |
DefaultProjectComponentManager.update(MutableProjectComponent component)
Update the component specified with the values given.
|
ProjectComponent |
ProjectComponentManager.update(MutableProjectComponent component)
Implement this method to update the component specified with the values given.
|
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
ComponentConverter.convertToProjectComponents(Collection<MutableProjectComponent> mutables)
Convert a collection of MutableProjectComponent objects to a collection of ProjectComponent objects.
|
Collection<ProjectComponent> |
DefaultProjectComponentManager.findAll() |
Collection<ProjectComponent> |
CachingProjectComponentStore.findAll()
Retrieve all ProjectComponent objects stored.
|
Collection<ProjectComponent> |
ProjectComponentManager.findAll()
Implement this method to find all components.
|
Collection<ProjectComponent> |
DefaultProjectComponentManager.findAllActiveForProject(Long projectId) |
Collection<ProjectComponent> |
ProjectComponentManager.findAllActiveForProject(Long projectId)
Returns all active components for given project.
|
Collection<ProjectComponent> |
DefaultProjectComponentManager.findAllArchivedForProject(Long projectId) |
Collection<ProjectComponent> |
ProjectComponentManager.findAllArchivedForProject(Long projectId)
Returns all archived components for given project.
|
Collection<ProjectComponent> |
DefaultProjectComponentService.findAllForProject(ErrorCollection errorCollection,
Long projectId) |
Collection<ProjectComponent> |
ProjectComponentService.findAllForProject(ErrorCollection errorCollection,
Long projectId) |
Collection<ProjectComponent> |
DefaultProjectComponentManager.findAllForProject(Long projectId)
Find all components associated with the project with the ID specified
|
Collection<ProjectComponent> |
ProjectComponentManager.findAllForProject(Long projectId)
Implement this method to find all components associated with the project with the ID specified.
|
Collection<ProjectComponent> |
DefaultProjectComponentManager.findByComponentNameCaseInSensitive(String componentName) |
Collection<ProjectComponent> |
ProjectComponentManager.findByComponentNameCaseInSensitive(String componentName)
Finds all ProjectComponents with the given name with comparisons case insenstive.
|
Collection<ProjectComponent> |
DefaultProjectComponentManager.findComponentsByIssue(Issue issue) |
Collection<ProjectComponent> |
ProjectComponentManager.findComponentsByIssue(Issue issue) |
Collection<ProjectComponent> |
DefaultProjectComponentManager.findComponentsByLead(String userName)
Retrieve a collection of components - where the lead of each component is
the specified user.
|
Collection<ProjectComponent> |
ProjectComponentManager.findComponentsByLead(String userName)
Retrieve a collection of ProjectComponents - where the lead of each component is the specified user.
|
List<ProjectComponent> |
DefaultProjectComponentManager.getComponents(List<Long> ids) |
List<ProjectComponent> |
ProjectComponentManager.getComponents(List<Long> ids)
Creates a list of ProjectComponent objects from the given list of IDs.
|
Modifier and Type | Method and Description |
---|---|
int |
LocaleSensitiveProjectComponentNameComparator.compare(ProjectComponent projectComponent1,
ProjectComponent projectComponent2) |
int |
ProjectComponentComparator.compare(ProjectComponent projectComponent1,
ProjectComponent projectComponent2) |
org.ofbiz.core.entity.GenericValue |
DefaultProjectComponentManager.convertToGenericValue(ProjectComponent 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
|
Map<String,Object> |
ProjectComponentFactory.fieldMapFrom(ProjectComponent projectComponent) |
Collection<Long> |
DefaultProjectComponentManager.getIssueIdsWithComponent(ProjectComponent component) |
Collection<Long> |
ProjectComponentManager.getIssueIdsWithComponent(ProjectComponent component)
Returns a list of all Issue IDs with the given component.
|
Modifier and Type | Method and Description |
---|---|
Collection<org.ofbiz.core.entity.GenericValue> |
DefaultProjectComponentManager.convertToGenericValues(Collection<ProjectComponent> projectComponents)
Temporary method to allow conversion of a collection of ProjectComponent objects
to a collection of GenericValues representing a project component.
|
Collection<org.ofbiz.core.entity.GenericValue> |
ProjectComponentManager.convertToGenericValues(Collection<ProjectComponent> projectComponents)
Deprecated.
don't use GenericValue use the ProjectComponent instead.
|
static Collection<MutableProjectComponent> |
MutableProjectComponent.copy(Collection<ProjectComponent> c)
Copy given collection of components
|
List<ChangeItemBean> |
DefaultProjectComponentManager.updateIssueProjectComponents(Issue issue,
Collection<ProjectComponent> newValue) |
List<ChangeItemBean> |
ProjectComponentManager.updateIssueProjectComponents(Issue issue,
Collection<ProjectComponent> newValue)
Updates the list of components in issue
|
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
ProjectComponentMergedEvent.getMergedProjectComponent() |
ProjectComponent |
ProjectComponentUpdatedEvent.getOldProjectComponent() |
ProjectComponent |
AbstractProjectComponentEvent.getProjectComponent() |
Constructor and Description |
---|
AbstractProjectComponentEvent(ProjectComponent projectComponent) |
ProjectComponentArchivedEvent(ProjectComponent projectComponent) |
ProjectComponentCreatedEvent(ProjectComponent projectComponent) |
ProjectComponentCreatedViaRestEvent(ProjectComponent projectComponent) |
ProjectComponentDeletedEvent(ProjectComponent projectComponent) |
ProjectComponentMergedEvent(ProjectComponent projectComponent,
ProjectComponent mergedProjectComponent) |
ProjectComponentRestoredEvent(ProjectComponent projectComponent) |
ProjectComponentUpdatedEvent(ProjectComponent projectComponent,
ProjectComponent oldProjectComponent) |
Modifier and Type | Method and Description |
---|---|
Map<String,ProjectComponent> |
DefaultProjectImportPersister.createComponents(BackupProject backupProject,
ProjectImportMapper projectImportMapper) |
Map<String,ProjectComponent> |
ProjectImportPersister.createComponents(BackupProject backupProject,
ProjectImportMapper projectImportMapper)
Creates the components, specified by
BackupProject.getProjectComponents()
for the named backup project. |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
DocumentIssueImpl.getComponentObjects()
Deprecated.
since 7.0, use
DocumentIssueImpl.getComponents() instead |
Collection<ProjectComponent> |
IssueImpl.getComponentObjects() |
Collection<ProjectComponent> |
Issue.getComponentObjects()
Deprecated.
Use
Issue.getComponents() . Since v7.0 |
Collection<ProjectComponent> |
DocumentIssueImpl.getComponents() |
Collection<ProjectComponent> |
IssueImpl.getComponents() |
Collection<ProjectComponent> |
Issue.getComponents() |
Modifier and Type | Method and Description |
---|---|
void |
IssueImpl.setComponent(Collection<ProjectComponent> components) |
void |
MutableIssue.setComponent(Collection<ProjectComponent> components)
Sets the components for this Issue.
|
Modifier and Type | Field and Description |
---|---|
static Function<ProjectComponent,Long> |
ComponentsSystemField.COMPONENT_TO_ID_TRANSFORMER |
Modifier and Type | Method and Description |
---|---|
List<ProjectComponent> |
ComponentsSystemField.getComponentsFromParams(Map params)
Returns the list of components contained in the given parameters Map, or null if not contained.
|
Collection<ProjectComponent> |
ComponentsSystemField.getDefaultValue(Issue issue) |
Collection<ProjectComponent> |
ComponentsSystemField.getValueFromParams(Map params) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
ComponentsSystemField.compareIdSets(Collection<ProjectComponent> newComponent,
Collection<ProjectComponent> currentComponent)
Compare the two genericValue collections and make sure they both contain the same set of ids
|
protected boolean |
ComponentsSystemField.compareIdSets(Collection<ProjectComponent> newComponent,
Collection<ProjectComponent> currentComponent)
Compare the two genericValue collections and make sure they both contain the same set of ids
|
void |
ComponentsSystemField.createValue(Issue issue,
Collection<ProjectComponent> value) |
String |
ComponentsSystemField.getViewHtml(FieldLayoutItem fieldLayoutItem,
webwork.action.Action action,
Issue issue,
Collection<ProjectComponent> value,
Map displayParameters) |
Constructor and Description |
---|
ComponentCreatedInlineEvent(ProjectComponent projectComponent) |
Modifier and Type | Method and Description |
---|---|
static ComponentJsonBean |
ComponentJsonBean.shortBean(ProjectComponent component,
JiraBaseUrls urls) |
Modifier and Type | Method and Description |
---|---|
static Collection<ComponentJsonBean> |
ComponentJsonBean.shortBeans(Collection<ProjectComponent> components,
JiraBaseUrls urls) |
Modifier and Type | Method and Description |
---|---|
Map<Project,Map<ProjectComponent,Integer>> |
ComponentStatisticsManagerImpl.getProjectsWithComponentsWithIssueCount(Optional<Query> query)
This method evaluates the query, and returns all the projects and components that the issues resulting from
the given query belong to, along with the issue count for each component.
|
Map<Project,Map<ProjectComponent,Integer>> |
ComponentStatisticsManager.getProjectsWithComponentsWithIssueCount(Optional<Query> query)
This method evaluates the query, and returns all the projects and components that the issues resulting from
the given query belong to, along with the issue count for each component.
|
Modifier and Type | Method and Description |
---|---|
String |
DefaultSearchLinkGenerator.getComponentSearchLink(ProjectComponent component)
Get search link for component field scoped within a project of the passed component.
|
String |
SearchLinkGenerator.getComponentSearchLink(ProjectComponent component)
Get search link for component field scoped within a project of the passed component.
|
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
ComponentResolver.get(Long id) |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
ComponentResolver.getAll() |
Modifier and Type | Method and Description |
---|---|
String |
ComponentIndexInfoResolver.getIndexedValue(ProjectComponent component) |
Constructor and Description |
---|
ComponentIndexInfoResolver(NameResolver<ProjectComponent> componentResolver) |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
TemplateIssue.getComponentObjects()
Deprecated.
Use
TemplateIssue.getComponents() . Since v7.0 |
Collection<ProjectComponent> |
TemplateIssue.getComponents() |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
MockIssue.getComponentObjects()
Deprecated.
Use
MockIssue.getComponents() . Since v7.0 |
Collection<ProjectComponent> |
MockIssue.getComponents() |
Modifier and Type | Method and Description |
---|---|
void |
MockIssue.setComponent(Collection<ProjectComponent> components) |
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
MockProjectComponentManager.create(String name,
String description,
String lead,
long assigneeType,
Long projectId) |
ProjectComponent |
MockProjectComponentManager.find(Long id) |
ProjectComponent |
MockProjectComponentManager.findByComponentName(Long projectId,
String componentName) |
ProjectComponent |
MockProjectComponentManager.getProjectComponent(Long projectComponentId) |
ProjectComponent |
MockProjectComponentManager.update(MutableProjectComponent component) |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
MockProjectComponentManager.findAll() |
Collection<ProjectComponent> |
MockProjectComponentManager.findAllActiveForProject(Long projectId) |
Collection<ProjectComponent> |
MockProjectComponentManager.findAllArchivedForProject(Long projectId) |
Collection<ProjectComponent> |
MockProjectComponentManager.findAllForProject(Long projectId) |
Collection<ProjectComponent> |
MockProjectComponentManager.findByComponentNameCaseInSensitive(String componentName) |
Collection<ProjectComponent> |
MockProjectComponentManager.findComponentsByIssue(Issue issue) |
Collection<ProjectComponent> |
MockProjectComponentManager.findComponentsByLead(String userName) |
List<ProjectComponent> |
MockProjectComponentManager.getComponents(List<Long> ids) |
Modifier and Type | Method and Description |
---|---|
org.ofbiz.core.entity.GenericValue |
MockProjectComponentManager.convertToGenericValue(ProjectComponent projectComponent) |
Collection<Long> |
MockProjectComponentManager.getIssueIdsWithComponent(ProjectComponent component) |
Modifier and Type | Method and Description |
---|---|
Collection<org.ofbiz.core.entity.GenericValue> |
MockProjectComponentManager.convertToGenericValues(Collection<ProjectComponent> projectComponents) |
List<ChangeItemBean> |
MockProjectComponentManager.updateIssueProjectComponents(Issue issue,
Collection<ProjectComponent> newValue) |
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
BrowseComponentContext.getComponent()
Retrieve the component for this context
|
Modifier and Type | Method and Description |
---|---|
ProjectComponent |
ComponentHelper.getComponent() |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
MockProject.getComponents() |
Collection<ProjectComponent> |
ProjectImpl.getComponents() |
Collection<ProjectComponent> |
Project.getComponents()
Returns the components for this Project.
|
Collection<ProjectComponent> |
MockProject.getProjectComponents() |
Collection<ProjectComponent> |
ProjectImpl.getProjectComponents() |
Collection<ProjectComponent> |
Project.getProjectComponents()
Returns the components for this Project.
|
Modifier and Type | Method and Description |
---|---|
ApplicationUser |
AbstractProjectManager.getDefaultAssignee(Project project,
ProjectComponent component) |
ApplicationUser |
ProjectManager.getDefaultAssignee(Project project,
ProjectComponent component)
Deprecated.
Use
ProjectManager.getDefaultAssignee(Project, java.util.Collection) which allows for multiple components. Since v4.4. |
Modifier and Type | Method and Description |
---|---|
ApplicationUser |
AbstractProjectManager.getDefaultAssignee(Project project,
Collection<ProjectComponent> components) |
ApplicationUser |
ProjectManager.getDefaultAssignee(Project project,
Collection<ProjectComponent> components)
Gets the default assignee for an issue given its project and list of Components.
|
void |
MockProject.setProjectComponents(Collection<ProjectComponent> projectComponents) |
Modifier and Type | Method and Description |
---|---|
ComponentIssueCountsBean |
ComponentIssueCountsBeanFactory.createComponentBean(ProjectComponent component,
long issueCount)
Create a ComponentBean given the passed Component.
|
ComponentIssueCountsBean |
ComponentIssueCountsBeanFactoryImpl.createComponentBean(ProjectComponent component,
long issueCount) |
static ComponentBean |
ComponentBean.fullComponent(ProjectComponent component,
Project project,
JiraBaseUrls jiraBaseUrls,
UserManager userManager,
AvatarService avatarService,
PermissionManager permissionManager,
ProjectManager projectManager) |
Modifier and Type | Method and Description |
---|---|
static Collection<ComponentBean> |
ComponentBean.asBeans(Collection<? extends ProjectComponent> components,
JiraBaseUrls jiraBaseUrls) |
static Collection<ComponentBean> |
ComponentBean.asFullBeans(Project project,
Collection<? extends ProjectComponent> components,
JiraBaseUrls jiraBaseUrls,
UserManager userManager,
AvatarService avatarService,
PermissionManager permissionManager,
ProjectManager projectManager) |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
UserUtilImpl.getComponentsUserLeads(ApplicationUser user) |
Collection<ProjectComponent> |
UserUtil.getComponentsUserLeads(ApplicationUser user)
Retrieve a collection of ProjectComponents - where the lead of each component is the specified user.
|
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
DeleteUser.getComponentsUserLeads() |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
AbstractViewIssue.getPossibleComponents() |
Modifier and Type | Method and Description |
---|---|
Collection<ProjectComponent> |
SelectComponentAssignees.getComponents() |
Copyright © 2002-2021 Atlassian. All Rights Reserved.