Uses of Class
fr.gouv.vitam.storage.engine.common.exception.StorageDriverMapperException
Package
Description
Provides the SPI implementation and configuration for the Storage Engine Server module
Provides the SPI mapper implementation and configuration for the Storage Engine Server module,
allowing the persistence of association between drivers and offers
-
Uses of StorageDriverMapperException in fr.gouv.vitam.storage.engine.server.spi
Modifier and TypeMethodDescriptionstatic void
DriverManager.addOffersToDriver
(String name, List<String> offerIds) Add offer to a driverstatic void
DriverManager.addOfferToDriver
(String name, String offerId) Add offer to a driverstatic void
DriverManager.removeOffer
(String offerId) Remove one offer to a driver -
Uses of StorageDriverMapperException in fr.gouv.vitam.storage.engine.server.spi.mapper
Modifier and TypeMethodDescriptionvoid
DriverMapper.addOffersTo
(List<String> offersIdsToAdd, String driverName) Add list of offers to a driver's offers persisted list (and persists it)void
FileDriverMapper.addOffersTo
(List<String> offersIdsToAdd, String driverName) void
DriverMapper.addOfferTo
(String offerId, String driverName) Add one offer to a driver's offers persisted list (and persists it)void
FileDriverMapper.addOfferTo
(String offerId, String driverName) static FileDriverMapper
FileDriverMapper.getInstance()
Get the driver mapper instanceDriverMapper.getOffersFor
(String driverName) Get persisted offers list for a driverFileDriverMapper.getOffersFor
(String driverName) void
DriverMapper.removeOffersTo
(List<String> offersIdsToRemove, String driverName) Remove list of offers to a driver's offers persisted list (and persist it)void
FileDriverMapper.removeOffersTo
(List<String> offersIdsToRemove, String driverName) void
DriverMapper.removeOfferTo
(String offerId, String driverName) Remove one offer to a driver's offers persisted list (and persists it)void
FileDriverMapper.removeOfferTo
(String offerId, String driverName)