Interface RecognitionBatchProxyManager
- All Superinterfaces:
AutoCloseable, Closeable, OsidProfile, OsidProxyManager, OsidProxyManager, RecognitionBatchProfile, Sourceable
The recognition batch proxy manager provides access to recognition batch sessions and provides interoperability tests for various aspects of this service. Methods in this manager support the passing of a Proxy. The sessions included in this manager are:
-
ConferralBatchAdminSession: a session to manage conferrals in bulk -
AwardBatchAdminSession: a session to manage awardd in bulk -
ConvocationBatchAdminSession: a session to manage convocations in bulk -
AcademyBatchAdminSession: a session to create, modify and deleteAcademyin bulk
RecognitionBatchProxyManager may be accessed by multiple
processing threads.-
Method Summary
Modifier and TypeMethodDescriptiongetAcademyBatchAdminSession(Proxy proxy) Gets theOsidSessionassociated with the bulk academy administration service.getAwardBatchAdminSession(Proxy proxy) Gets theOsidSessionassociated with the bulk award administration service.getAwardBatchAdminSessionForAcademy(Id academyId, Proxy proxy) Gets theOsidSessionassociated with the bulk award administration service for the given academy.Gets theOsidSessionassociated with the bulk conferral administration service.getConferralBatchAdminSessionForAcademy(Id academyId, Proxy proxy) Gets theOsidSessionassociated with the bulk conferral administration service for the given academy.Gets theOsidSessionassociated with the bulk convocation administration service.getConvocationBatchAdminSessionForAcademy(Id academyId, Proxy proxy) Gets theOsidSessionassociated with the bulk convocation administration service for the given academy.Methods inherited from interface OsidProfile
getBranch, getBranchId, getDescription, getDisplayName, getId, getLocales, getReleaseDate, getVersion, supportsJournalBranching, supportsJournalRollback, supportsOSIDVersionMethods inherited from interface OsidProxyManager
closeMethods inherited from interface OsidProxyManager
changeBranch, getProxy, getProxyCondition, initialize, rollbackServiceMethods inherited from interface RecognitionBatchProfile
supportsAcademyBatchAdmin, supportsAwardBatchAdmin, supportsConferralBatchAdmin, supportsConvocationBatchAdmin, supportsVisibleFederationMethods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderId
-
Method Details
-
getConferralBatchAdminSession
ConferralBatchAdminSession getConferralBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk conferral administration service.- Parameters:
proxy- a proxy- Returns:
- a
ConferralBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsConferralBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConferralBatchAdmin()} is {@code true}.
-
getConferralBatchAdminSessionForAcademy
ConferralBatchAdminSession getConferralBatchAdminSessionForAcademy(Id academyId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk conferral administration service for the given academy.- Parameters:
academyId- theIdof theAcademyproxy- a proxy- Returns:
- a
ConferralBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdorproxyisnullOperationFailedException- 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.- Parameters:
proxy- a proxy- Returns:
- an
AwardBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAwardBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAwardBatchAdmin()} is {@code true}.
-
getAwardBatchAdminSessionForAcademy
AwardBatchAdminSession getAwardBatchAdminSessionForAcademy(Id academyId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk award administration service for the given academy.- Parameters:
academyId- theIdof theAcademyproxy- a proxy- Returns:
- an
AwardBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdorproxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAwardBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAwardBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getConvocationBatchAdminSession
ConvocationBatchAdminSession getConvocationBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk convocation administration service.- Parameters:
proxy- a proxy- Returns:
- a
ConvocationBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsConvocationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsConvocationBatchAdmin()} is {@code true}.
-
getConvocationBatchAdminSessionForAcademy
ConvocationBatchAdminSession getConvocationBatchAdminSessionForAcademy(Id academyId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk convocation administration service for the given academy.- Parameters:
academyId- theIdof theAcademyproxy- a proxy- Returns:
- a
ConvocationBatchAdminSession - Throws:
NotFoundException- noAcademyfound by the givenIdNullArgumentException-academyIdorproxyisnullOperationFailedException- 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.- Parameters:
proxy- a proxy- Returns:
- a
AcademyBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAcademyBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAcademyBatchAdmin()} is {@code true}.
-