Interface | osid.tracking.DuplicateIssueAdminSession | ||
---|---|---|---|
Implements | osid.OsidSession | ||
Description |
This session creates and manages linked issues. | ||
Method | getFrontOfficeId | ||
Description |
Gets the | ||
Return | osid.id.Id | the FrontOffice Id associated with this session | |
Compliance | mandatory | This method must be implemented. | |
Method | getFrontOffice | ||
Description |
Gets the | ||
Return | osid.tracking.FrontOffice | the front office | |
Errors | OPERATION_FAILED | unable to complete request | |
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | canLinkIssues | ||
Description |
Tests if this user can link duplicate | ||
Return | boolean | false if linking Issues is not authorized,
true otherwise | |
Compliance | mandatory | This method must be implemented. | |
Method | canLinkIssue | ||
Description |
Tests if this user can link an | ||
Parameters | osid.id.Id | issueId | the Id of the Issue |
Return | boolean | false if issue linking is not authorized, true
otherwise | |
Errors | NULL_ARGUMENT | issueId is null | |
Compliance | mandatory | This method must be implemented. | |
Provider Notes |
If the | ||
Method | linkIssue | ||
Description |
Links two issues as duplicates. An issue may link to more than issue. | ||
Parameters | osid.id.Id | issueId | the Id of the Issue |
osid.id.Id | anotherIssueId | the Id of another Issue | |
Errors | ALREADY_EXISTS | issueId and anotherIssueId already linked | |
NOT_FOUND | issueId or anotherIssueId is not found | ||
NULL_ARGUMENT | issueId or anotherIssueId is null
| ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. | |
Method | unlinkIssue | ||
Description |
Removes the link between two issues as duplicates. | ||
Parameters | osid.id.Id | issueId | the Id of the Issue |
osid.id.Id | anotherIssueId | the Id of another Issue | |
Errors | NOT_FOUND | issueId and anotherIssueId not linked | |
NULL_ARGUMENT | issueId or anotherIssueId is null
| ||
OPERATION_FAILED | unable to complete request | ||
PERMISSION_DENIED | authorization failure | ||
Compliance | mandatory | This method must be implemented. |