OSID Logo
OSID Specifications
tracking package
Version 3.0.0
Interfaceosid.tracking.IssueNotificationSession
Implementsosid.OsidSession
Used Byosid.tracking.TrackingManager
osid.tracking.TrackingProxyManager
Description

This session defines methods to receive notifications on adds/changes to Issue objects in this FrontOffice . This session is intended for consumers needing to synchronize their state with this service without the use of polling. Notifications are cancelled when this session is closed.

The two views defined in this session correspond to the views in the IssueLookupSession .

MethodgetFrontOfficeId
Description

Gets the FrontOffice Id associated with this session.

Returnosid.id.Idthe FrontOffice Id associated with this session
CompliancemandatoryThis method must be implemented.
MethodgetFrontOffice
Description

Gets the FrontOffice associated with this session.

Returnosid.tracking.FrontOfficethe front office
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodcanRegisterForIssueNotifications
Description

Tests if this user can register for Issue notifications. A return of true does not guarantee successful authorization. A return of false indicates that it is known all methods in this session will result in a PERMISSION_DENIED . This is intended as a hint to an application that may opt not to offer notification operations.

Returnbooleanfalse if notification methods are not authorized, true otherwise
CompliancemandatoryThis method must be implemented.
MethoduseFederatedFrontOfficeView
Description

Federates the view for methods in this session. A federated view will include issues in front offices which are children of this front office in the front office hierarchy.

CompliancemandatoryThis method is must be implemented.
MethoduseIsolatedFrontOfficeView
Description

Isolates the view for methods in this session. An isolated view restricts notifications to this front office only.

CompliancemandatoryThis method is must be implemented.
MethodreliableIssueNotifications
Description

Reliable notifications are desired. In reliable mode, notifications are to be acknowledged using acknowledgeIssueNotification() .

CompliancemandatoryThis method is must be implemented.
MethodunreliableIssueNotifications
Description

Unreliable notifications are desired. In unreliable mode, notifications do not need to be acknowledged.

CompliancemandatoryThis method is must be implemented.
MethodacknowledgeIssueNotification
Description

Acknowledge an issue notification.

Parametersosid.id.IdnotificationIdthe Id of the notification
ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForNewIssues
Description

Register for notifications of new issues. IssueReceiver.newIssues() is invoked when a new Issue appears in this front office.

ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForNewIssuesForQueue
Description

Register for notifications of new issues in the given queue. IssueReceiver.newIssues() is invoked when a new Issue appears in this front office.

Parametersosid.id.IdqueueIdthe Id of the queue to monitor
ErrorsNULL_ARGUMENTqueueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForNewIssuesForCustomer
Description

Register for notifications of new issues for the given customer. IssueReceiver.newIssues() is invoked when a new Issue appears in this front office.

Parametersosid.id.IdresourceIdthe Id of the customer to monitor
ErrorsNULL_ARGUMENTresourceId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForNewIssuesByTopic
Description

Register for notifications of new issues for the given topic. IssueReceiver.newIssues() is invoked when a new Issue appears in this front office.

Parametersosid.id.IdsubjectIdthe Id of the subject to monitor
ErrorsNULL_ARGUMENTsubjectId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForChangedIssues
Description

Registers for notification of updated issues. IssueReceiver.changedIssues() is invoked when an issue in this front office is changed.

ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForChangedIssuesForQueue
Description

Registers for notification of updated issues in the given queue. IssueReceiver.changedIssues() is invoked when an issue in this front office is changed.

Parametersosid.id.IdqueueIdthe Id of the queue to monitor
ErrorsNULL_ARGUMENTqueueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForChangedIssuesForCustomer
Description

Registers for notification of updated issues for the given customer. IssueReceiver.changedIssue() is invoked when an issue in this front office is changed.

Parametersosid.id.IdresourceIdthe Id of the customer to monitor
ErrorsNULL_ARGUMENTresourceId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForChangedIssuesByTopic
Description

Registers for notification of updated issues for the given topic. IssueReceiver.changedIssues() is invoked when an issue in this front office is changed.

Parametersosid.id.IdsubjectIdthe Id of the subject to monitor
ErrorsNULL_ARGUMENTsubjectId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForChangedIssue
Description

Registers for notification of an updated issue. IssueReceiver.changedIssues() is invoked when the specified issue in this front office is changed.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForDeletedIssues
Description

Registers for notification of deleted issues. IssueReceiver.deletedIssues() is invoked when an issue is deleted or removed from this front office.

ErrorsOPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForDeletedIssuesForQueue
Description

Registers for notification of deleted issues in the given queue. IssueReceiver.deletedIssues() is invoked when an issue is deleted or removed from this front office.

Parametersosid.id.IdqueueIdthe Id of the queue to monitor
ErrorsNULL_ARGUMENTqueueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForDeletedIssuesForCustomer
Description

Registers for notification of deleted issues for the given customer. IssueReceiver.deletedIssues() is invoked when an issue is deleted or removed from this front office.

Parametersosid.id.IdresourceIdthe Id of the customer to monitor
ErrorsNULL_ARGUMENTresourceId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForDeletedIssuesByTopic
Description

Registers for notification of deleted issues for the given topic. IssueReceiver.deletedIssues() is invoked when an issue is deleted or removed from this front office.

Parametersosid.id.IdsubjectIdthe Id of the subject to monitor
ErrorsNULL_ARGUMENTsubjectId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForDeletedIssue
Description

Registers for notification of a deleted issue. IssueReceiver.deletedIssues() is invoked when the specified issue is deleted or removed from this front office.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForSubtasks
Description

Registers for notification of a subtask for the given issue. IssueReceiver.subtaskIssues() is invoked when the specified issue is gets a new subtask.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForLinkedIssues
Description

Registers for notification of a linked issue to the given issue. IssueReceiver.linkedIssue() is invoked when the specified issue gets a new duplicate.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForUnlinkedIssues
Description

Registers for notification of an unlinked issue from the given issue. IssueReceiver.unlinkedIssue() is invoked when the specified issue loses a duplicate.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForBlockingIssues
Description

Registers for notification of a blocking issue to the given issue. IssueReceiver.blockedIssue() is invoked when the specified issue is blocked by another issue.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForUnblockingIssues
Description

Registers for notification of the removal of a blocking issue to the given issue. IssueReceiver.unblockedIssue() is invoked when the specified issue is no longer blocked by another issue.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForBlockedIssues
Description

Registers for notification of a blocked issue to the given issue. IssueReceiver.blockedIssue() is invoked when the specified issue is blocking another issue.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.
MethodregisterForUnblockedIssues
Description

Registers for notification of the removal of a blocked issue to the given issue. IssueReceiver.unblockedIssue() is invoked when the specified issue is no longer blocking another issue.

Parametersosid.id.IdissueIdthe Id of the Issue to monitor
ErrorsNULL_ARGUMENTissueId is null
OPERATION_FAILEDunable to complete request
PERMISSION_DENIEDauthorization failure
CompliancemandatoryThis method must be implemented.