Uses of Class
io.clonecloudstore.driver.api.exception.DriverNotFoundException
Packages that use DriverNotFoundException
-
Uses of DriverNotFoundException in io.clonecloudstore.driver.api
Methods in io.clonecloudstore.driver.api that throw DriverNotFoundExceptionModifier and TypeMethodDescriptiondefault void
DriverApi.bucketDelete
(StorageBucket bucket) Delete one Bucket if it exists and is emptyvoid
DriverApi.bucketDelete
(String bucket) Delete one Bucket if it exists and is emptyGet one Bucket and returns itDriverApi.objectCopy
(StorageObject objectSource, StorageObject objectTarget) Copy one object to another one, possibly in a different bucket.default StorageObject
DriverApi.objectCopy
(String bucketSource, String objectSource, String bucketTarget, String objectTarget, Map<String, String> targetMetadata, Instant expireDate) Copy one object to another one, possibly in a different bucket.default void
DriverApi.objectDeleteInBucket
(StorageObject object) Delete the Object from this Bucketvoid
DriverApi.objectDeleteInBucket
(String bucket, String object) Delete the Object from this Bucketdefault StorageObject
DriverApi.objectFinalizeCreateInBucket
(StorageObject object, long realLen, String sha256) Second step in creation of an object within a Bucket.DriverApi.objectFinalizeCreateInBucket
(String bucket, String object, long realLen, String sha256) Second step in creation of an object within a Bucket.default InputStream
DriverApi.objectGetInputStreamInBucket
(StorageObject object) Get the content of the specified Object within specified BucketDriverApi.objectGetInputStreamInBucket
(String bucket, String object) Get the content of the specified Object within specified Bucketdefault StorageObject
DriverApi.objectGetMetadataInBucket
(StorageObject object) Get the Object metadata from this Bucket (those available from Object Storage)DriverApi.objectGetMetadataInBucket
(String bucket, String object) Get the Object metadata from this Bucket (those available from Object Storage)void
DriverApi.objectPrepareCreateInBucket
(StorageObject object, InputStream inputStream) First step in creation of an object within a Bucket.default long
DriverApi.objectsCountInBucket
(StorageBucket bucket) Count Objects in specified Bucketdefault long
DriverApi.objectsCountInBucket
(StorageBucket bucket, String prefix, Instant from, Instant to) Count Objects in specified Bucket with filters (all optionals)long
DriverApi.objectsCountInBucket
(String bucket) Count Objects in specified Bucketlong
DriverApi.objectsCountInBucket
(String bucket, String prefix, Instant from, Instant to) Count Objects in specified Bucket with filters (all optionals)default Iterator
<StorageObject> DriverApi.objectsIteratorInBucket
(StorageBucket bucket) Iterator on Objects in specified Bucketdefault Iterator
<StorageObject> DriverApi.objectsIteratorInBucket
(StorageBucket bucket, String prefix, Instant from, Instant to) Iterator on Objects in specified Bucket with filters (all optionals)DriverApi.objectsIteratorInBucket
(String bucket) Iterator on Objects in specified BucketDriverApi.objectsIteratorInBucket
(String bucket, String prefix, Instant from, Instant to) Iterator on Objects in specified Bucket with filters (all optionals)default Stream
<StorageObject> DriverApi.objectsStreamInBucket
(StorageBucket bucket) Stream Objects in specified Bucketdefault Stream
<StorageObject> DriverApi.objectsStreamInBucket
(StorageBucket bucket, String prefix, Instant from, Instant to) Stream Objects in specified Bucket with filters (all optionals)DriverApi.objectsStreamInBucket
(String bucket) Stream Objects in specified BucketDriverApi.objectsStreamInBucket
(String bucket, String prefix, Instant from, Instant to) Stream Objects in specified Bucket with filters (all optionals)