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 voidDriverApi.bucketDelete(StorageBucket bucket) Delete one Bucket if it exists and is emptyvoidDriverApi.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 StorageObjectDriverApi.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 voidDriverApi.objectDeleteInBucket(StorageObject object) Delete the Object from this BucketvoidDriverApi.objectDeleteInBucket(String bucket, String object) Delete the Object from this Bucketdefault StorageObjectDriverApi.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 InputStreamDriverApi.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 StorageObjectDriverApi.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)voidDriverApi.objectPrepareCreateInBucket(StorageObject object, InputStream inputStream) First step in creation of an object within a Bucket.default longDriverApi.objectsCountInBucket(StorageBucket bucket) Count Objects in specified Bucketdefault longDriverApi.objectsCountInBucket(StorageBucket bucket, String prefix, Instant from, Instant to) Count Objects in specified Bucket with filters (all optionals)longDriverApi.objectsCountInBucket(String bucket) Count Objects in specified BucketlongDriverApi.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)