Interface AuthorizationBatchManager
- All Superinterfaces:
AuthorizationBatchProfile, AutoCloseable, Closeable, OsidManager, OsidManager, OsidProfile, Sourceable
The authorization batch manager provides access to authorization batch sessions and provides interoperability tests for various aspects of this service. The sessions included in this manager are:
-
AuthorizationBatchAdminSession: a session to create, modify and delete authorizations in bulk -
FunctionBatchSession: a session to create, modify and delete functions in bulk -
QualifierBatchAdminSession: a session to create, modify and delete qualifiers in bulk -
VaultBatchAdminSession: a session to create, modify and delete vaults in bulk
-
Method Summary
Modifier and TypeMethodDescriptionGets theOsidSessionassociated with the bulk authorization administration service.Gets theOsidSessionassociated with the bulk authorization administration service for the given vault.Gets theOsidSessionassociated with the bulk function administration service.getFunctionBatchAdminSessionForVault(Id vaultId) Gets theOsidSessionassociated with the bulk function administration service for the given vault.Gets theOsidSessionassociated with the bulk qualifier administration service.getQualifierBatchAdminSessionForVault(Id vaultId) Gets theOsidSessionassociated with the bulk qualifier administration service for the given vault.Gets theOsidSessionassociated with the bulk vault administration service.Methods inherited from interface AuthorizationBatchProfile
supportsAuthorizationBatchAdmin, supportsFunctionBatchAdmin, supportsQualifierBatchAdmin, supportsVaultBatchAdmin, supportsVisibleFederationModifier and TypeMethodDescriptionbooleanTests if bulk administration of authorizations is available.booleanTests if bulk administration of functions is available.booleanTests if bulk administration of qualifiers is available.booleanTests if bulk administration of vaults 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
-
getAuthorizationBatchAdminSession
Gets theOsidSessionassociated with the bulk authorization administration service.- Returns:
- an
AuthorizationBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsAuthorizationBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuthorizationBatchAdmin()} is {@code true} .
-
getAuthorizationBatchAdminSessionForVault
AuthorizationBatchAdminSession getAuthorizationBatchAdminSessionForVault(Id vaultId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk authorization administration service for the given vault.- Parameters:
vaultId- theIdof theVault- Returns:
- an
AuthorizationBatchAdminSession - Throws:
NotFoundException- noVaultfound by the givenIdNullArgumentException-vaultIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsAuthorizationBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsAuthorizationBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getFunctionBatchAdminSession
Gets theOsidSessionassociated with the bulk function administration service.- Returns:
- a
FunctionBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsFunctionBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsFunctionBatchAdmin()} is {@code true} .
-
getFunctionBatchAdminSessionForVault
FunctionBatchAdminSession getFunctionBatchAdminSessionForVault(Id vaultId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk function administration service for the given vault.- Parameters:
vaultId- theIdof theVault- Returns:
- a
FunctionBatchAdminSession - Throws:
NotFoundException- noVaultfound by the givenIdNullArgumentException-vaultIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsFunctionBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsFunctionBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getQualifierBatchAdminSession
Gets theOsidSessionassociated with the bulk qualifier administration service.- Returns:
- a
QualifierBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsQualifierBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsQualifierBatchAdmin()} is {@code true} .
-
getQualifierBatchAdminSessionForVault
QualifierBatchAdminSession getQualifierBatchAdminSessionForVault(Id vaultId) throws NotFoundException, OperationFailedException Gets theOsidSessionassociated with the bulk qualifier administration service for the given vault.- Parameters:
vaultId- theIdof theVault- Returns:
- a
QualifierBatchAdminSession - Throws:
NotFoundException- noVaultfound by the givenIdNullArgumentException-vaultIdisnullOperationFailedException- unable to complete requestUnimplementedException-supportsQualifierBatchAdmin()orsupportsVisibleFederation()isfalse- Compliance:
optional- This method must be implemented if {@code supportsQualifierBatchAdmin()} and {@code supportsVisibleFederation()} are {@code true}
-
getVaultBatchAdminSession
Gets theOsidSessionassociated with the bulk vault administration service.- Returns:
- a
VaultBatchAdminSession - Throws:
OperationFailedException- unable to complete requestUnimplementedException-supportsVaultBatchAdmin()isfalse- Compliance:
optional- This method must be implemented if {@code supportsVaultBatchAdmin()} is {@code true} .
-