|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.atlassian.jira.config.DefaultSubTaskManager
public class DefaultSubTaskManager
Field Summary |
---|
Fields inherited from interface com.atlassian.jira.config.SubTaskManager |
---|
SUB_TASK_ISSUE_TYPE_STYLE, SUB_TASK_LINK_TYPE_INWARD_NAME, SUB_TASK_LINK_TYPE_NAME, SUB_TASK_LINK_TYPE_OUTWARD_NAME, SUB_TASK_LINK_TYPE_STYLE |
Constructor Summary | |
---|---|
DefaultSubTaskManager(ConstantsManager constantsManager,
IssueLinkTypeManager issueLinkTypeManager,
IssueLinkManager issueLinkManager,
PermissionManager permissionManager,
ApplicationProperties applicationProperties,
CollectionReorderer collectionReorderer,
IssueTypeSchemeManager issueTypeSchemeManager,
IssueManager issueManager)
|
Method Summary | |
---|---|
IssueUpdateBean |
changeParent(org.ofbiz.core.entity.GenericValue subTask,
org.ofbiz.core.entity.GenericValue newParentIssue,
com.atlassian.crowd.embedded.api.User currentUser)
Change the parent of the given subtask to the given new parent on behalf of the given user. |
IssueUpdateBean |
changeParent(Issue subTask,
Issue parentIssue,
com.atlassian.crowd.embedded.api.User currentUser)
Change the parent of the given subtask to the given new parent on behalf of the given user. |
void |
createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue,
org.ofbiz.core.entity.GenericValue subTaskIssue,
com.atlassian.crowd.embedded.api.User remoteUser)
create SubTask IssueLink |
void |
createSubTaskIssueLink(Issue parentIssue,
Issue subTaskIssue,
com.atlassian.crowd.embedded.api.User remoteUser)
|
org.ofbiz.core.entity.GenericValue |
createSubTaskIssueType(String name,
Long sequence,
String description,
String iconurl)
create SubTask IssueType |
void |
disableSubTasks()
|
void |
enableSubTasks()
Turn on sub-tasks by creating a sub-task issue link type and a default sub-task issue type |
Collection<Long> |
getAllSubTaskIssueIds()
Retrieves ids of all sub-task issues in the system. |
org.ofbiz.core.entity.GenericValue |
getParentIssue(org.ofbiz.core.entity.GenericValue subtask)
Get the parent issue from a subtask |
Long |
getParentIssueId(org.ofbiz.core.entity.GenericValue issue)
|
SubTaskBean |
getSubTaskBean(org.ofbiz.core.entity.GenericValue issue,
com.atlassian.crowd.embedded.api.User remoteUser)
Returns the SubTaskBean for the given parent issue in the context of the given user. |
SubTaskBean |
getSubTaskBean(Issue issue,
com.atlassian.crowd.embedded.api.User remoteUser)
Returns the SubTaskBean for the given parent issue in the context of the given user. |
List<IssueLink> |
getSubTaskIssueLinks(Long issueId)
Returns a list of issue links associated with the issue |
IssueType |
getSubTaskIssueType(String id)
Returns the SubTask IssueType with the given ID. |
org.ofbiz.core.entity.GenericValue |
getSubTaskIssueTypeById(String id)
Returns the SubTask IssueType with the given ID. |
Collection<IssueType> |
getSubTaskIssueTypeObjects()
Retrieves all the sub-task issue types |
Collection<Issue> |
getSubTaskObjects(Issue parentIssue)
Get an issue's subtasks. |
Collection<org.ofbiz.core.entity.GenericValue> |
getSubTasks(org.ofbiz.core.entity.GenericValue issue)
Deprecated. Use getSubTaskObjects(com.atlassian.jira.issue.Issue) instead. |
IssueType |
insertSubTaskIssueType(String name,
Long sequence,
String description,
String iconurl)
|
boolean |
isSubTask(org.ofbiz.core.entity.GenericValue issue)
|
boolean |
isSubTaskIssueType(org.ofbiz.core.entity.GenericValue issueType)
|
boolean |
isSubTasksEnabled()
|
boolean |
issueTypeExistsById(String id)
|
boolean |
issueTypeExistsByName(String name)
|
void |
moveSubTask(org.ofbiz.core.entity.GenericValue parentIssue,
Long currentSequence,
Long sequence)
move SubTask |
void |
moveSubTask(Issue parentIssue,
Long currentSequence,
Long sequence)
|
void |
moveSubTaskIssueTypeDown(String id)
|
void |
moveSubTaskIssueTypeUp(String id)
|
void |
removeSubTaskIssueType(String name)
|
void |
resetSequences(Issue issue)
|
void |
updateSubTaskIssueType(String id,
String name,
Long sequence,
String description,
String iconurl)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultSubTaskManager(ConstantsManager constantsManager, IssueLinkTypeManager issueLinkTypeManager, IssueLinkManager issueLinkManager, PermissionManager permissionManager, ApplicationProperties applicationProperties, CollectionReorderer collectionReorderer, IssueTypeSchemeManager issueTypeSchemeManager, IssueManager issueManager)
Method Detail |
---|
public void enableSubTasks() throws CreateException
enableSubTasks
in interface SubTaskManager
CreateException
public void disableSubTasks()
disableSubTasks
in interface SubTaskManager
public Collection<IssueType> getSubTaskIssueTypeObjects()
SubTaskManager
getSubTaskIssueTypeObjects
in interface SubTaskManager
IssueType
s.public boolean isSubTasksEnabled()
isSubTasksEnabled
in interface SubTaskManager
public org.ofbiz.core.entity.GenericValue createSubTaskIssueType(String name, Long sequence, String description, String iconurl) throws CreateException
SubTaskManager
createSubTaskIssueType
in interface SubTaskManager
CreateException
public IssueType insertSubTaskIssueType(String name, Long sequence, String description, String iconurl) throws CreateException
insertSubTaskIssueType
in interface SubTaskManager
CreateException
public void updateSubTaskIssueType(String id, String name, Long sequence, String description, String iconurl) throws DataAccessException
updateSubTaskIssueType
in interface SubTaskManager
DataAccessException
public boolean issueTypeExistsByName(String name)
issueTypeExistsByName
in interface SubTaskManager
public void moveSubTaskIssueTypeUp(String id) throws DataAccessException
moveSubTaskIssueTypeUp
in interface SubTaskManager
DataAccessException
public void moveSubTaskIssueTypeDown(String id) throws DataAccessException
moveSubTaskIssueTypeDown
in interface SubTaskManager
DataAccessException
public org.ofbiz.core.entity.GenericValue getSubTaskIssueTypeById(String id)
SubTaskManager
getSubTaskIssueTypeById
in interface SubTaskManager
id
- the ID
public IssueType getSubTaskIssueType(String id)
SubTaskManager
getSubTaskIssueType
in interface SubTaskManager
id
- the ID
public void removeSubTaskIssueType(String name) throws RemoveException
removeSubTaskIssueType
in interface SubTaskManager
RemoveException
public boolean issueTypeExistsById(String id)
issueTypeExistsById
in interface SubTaskManager
public boolean isSubTask(org.ofbiz.core.entity.GenericValue issue)
isSubTask
in interface SubTaskManager
public boolean isSubTaskIssueType(org.ofbiz.core.entity.GenericValue issueType)
isSubTaskIssueType
in interface SubTaskManager
public Long getParentIssueId(org.ofbiz.core.entity.GenericValue issue)
getParentIssueId
in interface SubTaskManager
public org.ofbiz.core.entity.GenericValue getParentIssue(org.ofbiz.core.entity.GenericValue subtask)
SubTaskManager
getParentIssue
in interface SubTaskManager
subtask
- subtask
public SubTaskBean getSubTaskBean(org.ofbiz.core.entity.GenericValue issue, com.atlassian.crowd.embedded.api.User remoteUser)
SubTaskManager
getSubTaskBean
in interface SubTaskManager
issue
- the IssueremoteUser
- the user
public SubTaskBean getSubTaskBean(Issue issue, com.atlassian.crowd.embedded.api.User remoteUser)
SubTaskManager
getSubTaskBean
in interface SubTaskManager
issue
- the IssueremoteUser
- the user
public void moveSubTask(org.ofbiz.core.entity.GenericValue parentIssue, Long currentSequence, Long sequence)
SubTaskManager
moveSubTask
in interface SubTaskManager
public void moveSubTask(Issue parentIssue, Long currentSequence, Long sequence)
moveSubTask
in interface SubTaskManager
public void resetSequences(Issue issue)
resetSequences
in interface SubTaskManager
public Collection<Long> getAllSubTaskIssueIds()
getAllSubTaskIssueIds
in interface SubTaskManager
public List<IssueLink> getSubTaskIssueLinks(Long issueId)
SubTaskManager
getSubTaskIssueLinks
in interface SubTaskManager
issueId
- issue id
public Collection<org.ofbiz.core.entity.GenericValue> getSubTasks(org.ofbiz.core.entity.GenericValue issue)
getSubTaskObjects(com.atlassian.jira.issue.Issue)
instead.
getSubTasks
in interface SubTaskManager
issue
- the issue
public Collection<Issue> getSubTaskObjects(Issue parentIssue)
getSubTaskObjects
in interface SubTaskManager
Issue
s.public void createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue, org.ofbiz.core.entity.GenericValue subTaskIssue, com.atlassian.crowd.embedded.api.User remoteUser) throws CreateException
SubTaskManager
createSubTaskIssueLink
in interface SubTaskManager
CreateException
public void createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, com.atlassian.crowd.embedded.api.User remoteUser) throws CreateException
createSubTaskIssueLink
in interface SubTaskManager
CreateException
public IssueUpdateBean changeParent(org.ofbiz.core.entity.GenericValue subTask, org.ofbiz.core.entity.GenericValue newParentIssue, com.atlassian.crowd.embedded.api.User currentUser) throws RemoveException, CreateException
SubTaskManager
changeParent
in interface SubTaskManager
subTask
- The SubTasknewParentIssue
- The parent IssuecurrentUser
- The user
RemoveException
- if there's a problem unlinking original parent.
CreateException
- if there's a problem linking new parent.public IssueUpdateBean changeParent(Issue subTask, Issue parentIssue, com.atlassian.crowd.embedded.api.User currentUser) throws RemoveException, CreateException
SubTaskManager
changeParent
in interface SubTaskManager
subTask
- The SubTaskparentIssue
- The parent IssuecurrentUser
- The user
RemoveException
- if there's a problem unlinking original parent.
CreateException
- if there's a problem linking new parent.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |