Interface CourseRegistrationBatchProxyManager
- All Superinterfaces:
AutoCloseable, Closeable, CourseRegistrationBatchProfile, OsidProfile, OsidProxyManager, OsidProxyManager, Sourceable
public interface CourseRegistrationBatchProxyManager
extends OsidProxyManager, CourseRegistrationBatchProfile
The course registration batch proxy manager provides access to course
registration batch sessions and provides interoperability tests for
various aspects of this service. Methods in this manager support the
passing of a Proxy object. The sessions included in this manager
are:
-
RegistrationTargetBatchAdminSession: a session to create, modify and delete registration targets in bulk -
RegistrationBatchSession: a session to create, modify and delete registrations in bulk -
CourseRegistrationBatchSession: a session to create, modify and delete course registrations in bulk -
ActivityRegistrationBatchAdminSession: a session to create, modify and delete activity registrations in bulk
-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk activity registration administration service.getActivityRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) Gets theOsidSessionassociated with the bulk activity registration administration service for the given course catalog.Gets theOsidSessionassociated with the bulk course registration administration service.getCourseRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) Gets theOsidSessionassociated with the bulk course registration administration service for the given course catalog.Gets theOsidSessionassociated with the bulk registration administration service.getRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) Gets theOsidSessionassociated with the bulk registration administration service for the given course catalog.Gets theOsidSessionassociated with the bulk registration target administration service.getRegistrationTargetBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) Gets theOsidSessionassociated with the bulk registration target administration service for the given course catalog.Methods inherited from interface CourseRegistrationBatchProfile
supportsActivityRegistrationBatchAdmin, supportsCourseRegistrationBatchAdmin, supportsRegistrationBatchAdmin, supportsRegistrationTargetBatchAdmin, supportsVisibleFederationModifier and TypeMethodDescriptionbooleanTests if bulk administration of activity registrations is available.booleanTests if bulk administration of course registrations is available.booleanTests if bulk administration of registrations is available.booleanTests if bulk administration of registration targets is available.booleanTests if federation is visible.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 OsidProxyManager
closeMethods inherited from interface OsidProxyManager
changeBranch, initialize, rollbackServiceModifier and TypeMethodDescriptionvoidchangeBranch(Id branchId, Proxy proxy) Changes the service branch.voidinitialize(OsidRuntimeManager runtime) Initializes this manager.rollbackService(Date rollbackTime, Proxy proxy) Rolls back this service to a point in time.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
-
getRegistrationTargetBatchAdminSession
RegistrationTargetBatchAdminSession getRegistrationTargetBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk registration target administration service.- Parameters:
proxy- a proxy- Returns:
- a
RegistrationTargetBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsRegistrationTargetBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsRegistrationTargetBatchAdmin()} is {@code true} .
-
getRegistrationTargetBatchAdminSessionForCourseCatalog
RegistrationTargetBatchAdminSession getRegistrationTargetBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk registration target administration service for the given course catalog.- Parameters:
courseCatalogId- theIdof theCourseCatalogproxy- a proxy- Returns:
- a
RegistrationTargetBatchAdminSession - Throws:
NotFoundException- noCourseCatalogfound by the givenIdNullArgumentException-courseCatalogIdorproxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsRegistrationTargetBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsRegistrationTargetBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getRegistrationBatchAdminSession
RegistrationBatchAdminSession getRegistrationBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk registration administration service.- Parameters:
proxy- a proxy- Returns:
- a
RegistrationBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsRegistrationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsRegistrationBatchAdmin()} is {@code true} .
-
getRegistrationBatchAdminSessionForCourseCatalog
RegistrationBatchAdminSession getRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk registration administration service for the given course catalog.- Parameters:
courseCatalogId- theIdof theCourseCatalogproxy- a proxy- Returns:
- a
RegistrationBatchAdminSession - Throws:
NotFoundException- noCourseCatalogfound by the givenIdNullArgumentException-courseCatalogIdorproxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsRegistrationBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsRegistrationBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getCourseRegistrationBatchAdminSession
CourseRegistrationBatchAdminSession getCourseRegistrationBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk course registration administration service.- Parameters:
proxy- a proxy- Returns:
- a
CourseRegistrationBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsCourseRegistrationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsCourseRegistrationBatchAdmin()} is {@code true} .
-
getCourseRegistrationBatchAdminSessionForCourseCatalog
CourseRegistrationBatchAdminSession getCourseRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk course registration administration service for the given course catalog.- Parameters:
courseCatalogId- theIdof theCourseCatalogproxy- a proxy- Returns:
- a
CourseRegistrationBatchAdminSession - Throws:
NotFoundException- noCourseCatalogfound by the givenIdNullArgumentException-courseCatalogIdorproxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsCourseRegistrationBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsCourseRegistrationBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getActivityRegistrationBatchAdminSession
ActivityRegistrationBatchAdminSession getActivityRegistrationBatchAdminSession(Proxy proxy) throws OperationFailedException Gets theOsidSessionassociated with the bulk activity registration administration service.- Parameters:
proxy- a proxy- Returns:
- an
ActivityRegistrationBatchAdminSession - Throws:
NullArgumentException-proxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsActivityRegistrationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsActivityRegistrationBatchAdmin()} is {@code true} .
-
getActivityRegistrationBatchAdminSessionForCourseCatalog
ActivityRegistrationBatchAdminSession getActivityRegistrationBatchAdminSessionForCourseCatalog(Id courseCatalogId, Proxy proxy) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk activity registration administration service for the given course catalog.- Parameters:
courseCatalogId- theIdof theCourseCatalogproxy- a proxy- Returns:
- an
ActivityRegistrationBatchAdminSession - Throws:
NotFoundException- noCourseCatalogfound by the givenIdNullArgumentException-courseCatalogIdorproxyisnullOperationFailedException- unable to complete requestUnimplementedException-supportsActivityRegistrationBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsActivityRegistrationBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-