Uses of Class
fr.gouv.vitam.storage.driver.exception.StorageDriverException
-
Packages that use StorageDriverException Package Description fr.gouv.vitam.driver.fake Provides a fake Driver implementation for tests purposefr.gouv.vitam.ihmrecette.appserver Provides the web server application and configuration for the IHM Recette module and the rest resource it usesfr.gouv.vitam.storage.driver Provides interface describing how drivers should be implemented for the Storage driver modulefr.gouv.vitam.storage.driver.exception Provides Exception classes for the Storage driver modulefr.gouv.vitam.storage.engine.server.distribution.impl Provides a Distribution implementation for the Storage Engine Server modulefr.gouv.vitam.storage.offers.workspace.driver Provides implementation of the driver for the Workspace Driver module. -
-
Uses of StorageDriverException in fr.gouv.vitam.driver.fake
Methods in fr.gouv.vitam.driver.fake that throw StorageDriverException Modifier and Type Method Description Connection
FakeDriverImpl. connect(java.lang.String offerId)
boolean
FakeDriverImpl. isStorageOfferAvailable(java.lang.String offerId)
-
Uses of StorageDriverException in fr.gouv.vitam.ihmrecette.appserver
Methods in fr.gouv.vitam.ihmrecette.appserver that throw StorageDriverException Modifier and Type Method Description VitamAsyncInputStreamResponse
StorageService. download(java.lang.Integer tenantId, DataCategory dataCategory, java.lang.String strategyId, java.lang.String offerId, java.lang.String objectId)
-
Uses of StorageDriverException in fr.gouv.vitam.storage.driver
Methods in fr.gouv.vitam.storage.driver that throw StorageDriverException Modifier and Type Method Description StorageBulkPutResult
Connection. bulkPutObjects(StorageBulkPutRequest request)
Bulk put object files into the storage offer.void
Connection. close()
Override AutoCloseable implementation to specify the exceptionConnection
Driver. connect(java.lang.String offerId)
Create a connection to the distant offer service based on given offer Id name.RequestResponse<TapeReadRequestReferentialEntity>
Connection. createReadOrderRequest(StorageObjectRequest request)
Asynchronous retrieve an object from the storage offer based on criterias defined in request argument.StorageBulkMetadataResult
Connection. getBulkMetadata(StorageGetBulkMetadataRequest request)
Bulk get metadata of objectsStorageMetadataResult
Connection. getMetadatas(StorageGetMetadataRequest request)
Get metadata of objectStorageGetResult
Connection. getObject(StorageObjectRequest request)
Retrieve an object from the storage offer based on criterias defined in request argument.RequestResponse<OfferLog>
Connection. getOfferLogs(StorageOfferLogRequest request)
Get a listing of offer logs on a container typeRequestResponse<TapeReadRequestReferentialEntity>
Connection. getReadOrderRequest(java.lang.String readOrderRequestId, int tenant)
StorageCapacityResult
Connection. getStorageCapacity(java.lang.Integer tenantId)
Retrieve the remaining storage capacity available on the distant offer.boolean
AbstractDriver. isStorageOfferAvailable(java.lang.String offerId)
boolean
Driver. isStorageOfferAvailable(java.lang.String offerId)
The driver MUST provide a way to check the availability of the storage offer Id name.CloseableIterator<ObjectEntry>
Connection. listObjects(StorageListRequest request)
List object on a container typeboolean
Connection. objectExistsInOffer(StorageObjectRequest request)
Check if an object is present in the offerStoragePutResult
Connection. putObject(StoragePutRequest request)
Put the object file into the storage offer based on criterias defined in request argument and underlaying connection parameters.StorageRemoveResult
Connection. removeObject(StorageRemoveRequest request)
Delete an object on the distant storage offer.void
Connection. removeReadOrderRequest(java.lang.String readOrderRequestId, int tenant)
-
Uses of StorageDriverException in fr.gouv.vitam.storage.driver.exception
Subclasses of StorageDriverException in fr.gouv.vitam.storage.driver.exception Modifier and Type Class Description class
StorageDriverConflictException
Exceptions to be thrown by the storage drivers in case of conflicting resourceclass
StorageDriverNotFoundException
Exceptions to be thrown by the storage drivers in case resource was not found on the storage offerclass
StorageDriverPreconditionFailedException
Exceptions to be thrown by the storage drivers in case resource requested is already existingclass
StorageDriverServiceUnavailableException
Exceptions to be thrown by the storage drivers in case resource requested is already existing -
Uses of StorageDriverException in fr.gouv.vitam.storage.engine.server.distribution.impl
Methods in fr.gouv.vitam.storage.engine.server.distribution.impl that throw StorageDriverException Modifier and Type Method Description ThreadResponseData
TransferThread. call()
-
Uses of StorageDriverException in fr.gouv.vitam.storage.offers.workspace.driver
-