Interface ChecklistBatchManager
- All Superinterfaces:
AutoCloseable, ChecklistBatchProfile, Closeable, OsidManager, OsidManager, OsidProfile, Sourceable
The checklist batch manager provides access to checklist batch sessions and provides interoperability tests for various aspects of this service. The sessions included in this manager are:
-
TodoBatchSession: a session to create, modify and delete todos in bulk -
ChecklistBatchAdminSession: a session to create, modify and delete checklists in bulk
ChecklistBatchManager may be accessed by multiple processing
threads.-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk checklist administration service.Gets theOsidSessionassociated with the bulk todo administration service.getTodoBatchAdminSessionForChecklist(Id checklistId) Gets theOsidSessionassociated with the bulk todo administration service for the given checklist.Methods inherited from interface ChecklistBatchProfile
supportsChecklistBatchAdmin, supportsTodoBatchAdmin, supportsVisibleFederationMethods inherited from interface OsidManager
closeMethods inherited from interface OsidManager
changeBranch, initialize, rollbackServiceMethods inherited from interface OsidProfile
getBranch, getBranchId, getDescription, getDisplayName, getId, getLocales, getReleaseDate, getVersion, supportsJournalBranching, supportsJournalRollback, supportsOSIDVersionMethods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderId
-
Method Details
-
getTodoBatchAdminSession
Gets theOsidSessionassociated with the bulk todo administration service.- Returns:
- a
TodoBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsTodoBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsTodoBatchAdmin()} is {@code true}.
-
getTodoBatchAdminSessionForChecklist
TodoBatchAdminSession getTodoBatchAdminSessionForChecklist(Id checklistId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk todo administration service for the given checklist.- Parameters:
checklistId- theIdof theChecklist- Returns:
- a
TodoBatchAdminSession - Throws:
NotFoundException- noChecklistfound by the givenIdNullArgumentException-checklistIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsTodoBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsTodoBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getChecklistBatchAdminSession
Gets theOsidSessionassociated with the bulk checklist administration service.- Returns:
- a
ChecklistBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsChecklistBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsChecklistBatchAdmin()} is {@code true}.
-