Interface InquiryBatchManager
- All Superinterfaces:
AutoCloseable, Closeable, InquiryBatchProfile, OsidManager, OsidManager, OsidProfile, Sourceable
The inquiry batch manager provides access to inquiry batch sessions and provides interoperability tests for various aspects of this service. The sessions included in this manager are:
-
InquiryBatchAdminSession: a session to create, modify and deleteInquiriesin bulk -
AuditBatchAdminSession: a session to create, modify and deleteAuditsin bulk -
ResponseBatchAdminSession: a session to create, modify and delete Responses in bulk -
InquestBatchAdminSession: a session to create, modify and deleteInquestsin bulk
-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk audit administration service.getAuditBatchAdminSessionForInquest(Id inquestId) Gets theOsidSessionassociated with the bulk audit administration service for the given inquest.Gets theOsidSessionassociated with the bulk inquest administration service.Gets theOsidSessionassociated with the bulk inquiry administration service.getInquiryBatchAdminSessionForInquest(Id inquestId) Gets theOsidSessionassociated with the bulk inquiry administration service for the given inquest.Gets theOsidSessionassociated with the bulk response administration service.getResponseAdminSessionForInquest(Id inquestId) Gets theOsidSessionassociated with the bulk response administration service for the given inquest.Methods inherited from interface InquiryBatchProfile
supportsAuditBatchAdmin, supportsInquestBatchAdmin, supportsInquiryBatchAdmin, supportsResponseBatchAdmin, supportsVisibleFederationModifier and TypeMethodDescriptionbooleanTests if bulk administration of audits is available.booleanTests if bulk administration of inquests is available.booleanTests if bulk administration of inquiries is available.booleanTests if bulk administration of responses is available.booleanTests if federation is visible.Methods inherited from interface OsidManager
closeMethods inherited from interface OsidManager
changeBranch, initialize, rollbackServiceModifier and TypeMethodDescriptionvoidchangeBranch(Id branchId) Changes the service branch.voidinitialize(OsidRuntimeManager runtime) Initializes this manager.rollbackService(Date rollbackTime) Rolls back this service to a point in time.Methods inherited from interface OsidProfile
getBranch, getBranchId, getDescription, getDisplayName, getId, getLocales, getProxyRecordTypes, getReleaseDate, getVersion, supportsJournalBranching, supportsJournalRollback, supportsOSIDVersion, supportsProxyRecordTypeModifier and TypeMethodDescriptionGets this service branch.Gets theBranch Idrepresenting this service branch.Gets a description of this service implementation.Gets a display name for this service implementation.getId()Gets an identifier for this service implementation.Gets the locales supported in this service.Gets the proxy recordTypessupported in this service.Gets the date this service implementation was released.Gets the version of this service implementation.booleanTest for support of a journal branching service.booleanTest for support of a journaling rollback service.booleansupportsOSIDVersion(Version version) Test for support of an OSID specification version.booleansupportsProxyRecordType(Type proxyRecordType) Test for support of a proxy type.Methods inherited from interface Sourceable
getBranding, getBrandingIds, getLicense, getProvider, getProviderIdModifier and TypeMethodDescriptionGets a branding, such as an image or logo, expressed using theAssetinterface.Gets the branding assetIds.Gets the terms of usage.Gets theResourcerepresenting the provider.Gets theIdof the provider.
-
Method Details
-
getInquiryBatchAdminSession
Gets theOsidSessionassociated with the bulk inquiry administration service.- Returns:
- an
InquiryBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsInquiryBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsInquiryBatchAdmin()} is {@code true} .
-
getInquiryBatchAdminSessionForInquest
InquiryBatchAdminSession getInquiryBatchAdminSessionForInquest(Id inquestId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk inquiry administration service for the given inquest.- Parameters:
inquestId- theIdof theInquest- Returns:
- an
InquiryBatchAdminSession - Throws:
NotFoundException- noInquestfound by the givenIdNullArgumentException-inquestIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsInquiryBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsInquiryBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getAuditBatchAdminSession
Gets theOsidSessionassociated with the bulk audit administration service.- Returns:
- an
AuditBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAuditBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuditBatchAdmin()} is {@code true} .
-
getAuditBatchAdminSessionForInquest
AuditBatchAdminSession getAuditBatchAdminSessionForInquest(Id inquestId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk audit administration service for the given inquest.- Parameters:
inquestId- theIdof theInquest- Returns:
- an
AuditBatchAdminSession - Throws:
NotFoundException- noInquestfound by the givenIdNullArgumentException-inquestIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAuditBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuditBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getResponseAdminSession
Gets theOsidSessionassociated with the bulk response administration service.- Returns:
- a
ResponseBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsResponseBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsResponseBatchAdmin()} is {@code true} .
-
getResponseAdminSessionForInquest
ResponseBatchAdminSession getResponseAdminSessionForInquest(Id inquestId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk response administration service for the given inquest.- Parameters:
inquestId- theIdof theInquest- Returns:
- a
ResponseBatchAdminSession - Throws:
NotFoundException- noInquestfound by the givenIdNullArgumentException-inquestIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsResponseBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsResponseBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getInquestBatchAdminSession
Gets theOsidSessionassociated with the bulk inquest administration service.- Returns:
- a
InquestBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsInquestBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsInquestBatchAdmin()} is {@code true} .
-