Interface RecognitionBatchManager
- All Superinterfaces:
AutoCloseable, Closeable, OsidManager, OsidManager, OsidProfile, RecognitionBatchProfile, Sourceable
The recognition batch manager provides access to recognition batch sessions and provides interoperability tests for various aspects of this service. The sessions included in this manager are:
-
ConferralBatchAdminSession: a session to create, modify and deleteConferralsin bulk -
AwardBatchAdminSession: a session to create, modify and delete Awards in bulk -
ConvocationBatchAdminSession: a session to create, modify and delete Convocations in bulk -
AcademyBatchAdminSession: a session to create, modify and deleteAcademyin bulk
RecognitionBatchManager may be accessed by multiple processing
threads.-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk academy administration service.Gets theOsidSessionassociated with the bulk award administration service.getAwardBatchAdminSessionForAcademy(Id academyId) Gets theOsidSessionassociated with the bulk award administration service for the given academy.Gets theOsidSessionassociated with the bulk conferral administration service.getConferralBatchAdminSessionForAcademy(Id academyId) Gets theOsidSessionassociated with the bulk conferral administration service for the given academy.Gets theOsidSessionassociated with the bulk convocation administration service.getConvocationBatchAdminSessionForAcademy(Id academyId) Gets theOsidSessionassociated with the bulk convocation administration service for the given academy.Methods 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 RecognitionBatchProfile
supportsAcademyBatchAdmin, supportsAwardBatchAdmin, supportsConferralBatchAdmin, supportsConvocationBatchAdmin, supportsVisibleFederationMethods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderId
-
Method Details
-
getConferralBatchAdminSession
Gets theOsidSessionassociated with the bulk conferral administration service.- Returns:
- a
ConferralBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsConferralBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConferralBatchAdmin()} is {@code true}.
-
getConferralBatchAdminSessionForAcademy
ConferralBatchAdminSession getConferralBatchAdminSessionForAcademy(Id academyId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk conferral administration service for the given academy.- Parameters:
academyId- theIdof theAcademy- Returns:
- a
ConferralBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsConferralBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConferralBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getAwardBatchAdminSession
Gets theOsidSessionassociated with the bulk award administration service.- Returns:
- an
AwardBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAwardBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAwardBatchAdmin()} is {@code true}.
-
getAwardBatchAdminSessionForAcademy
AwardBatchAdminSession getAwardBatchAdminSessionForAcademy(Id academyId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk award administration service for the given academy.- Parameters:
academyId- theIdof theAcademy- Returns:
- an
AwardBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAwardBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAwardBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getConvocationBatchAdminSession
Gets theOsidSessionassociated with the bulk convocation administration service.- Returns:
- a
ConvocationBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsConvocationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConvocationBatchAdmin()} is {@code true}.
-
getConvocationBatchAdminSessionForAcademy
ConvocationBatchAdminSession getConvocationBatchAdminSessionForAcademy(Id academyId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk convocation administration service for the given academy.- Parameters:
academyId- theIdof theAcademy- Returns:
- a
ConvocationBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsConvocationBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConvocationBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getAcademyBatchAdminSession
Gets theOsidSessionassociated with the bulk academy administration service.- Returns:
- a
AcademyBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAcademyBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAcademyBatchAdmin()} is {@code true}.
-