com.exasol.bucketfs.BucketFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bucketfs-java Show documentation
Show all versions of bucketfs-java Show documentation
Java library for automating tasks on Exasol's BucketFS.
The newest version!
package com.exasol.bucketfs;
/**
* Common interface for factories producing {@code Bucket} instances.
*/
public interface BucketFactory {
/**
* Get a BucketFS bucket.
*
* @param serviceName name of the BucketFS service that hosts the bucket
* @param bucketName name of the bucket
* @return bucket
*/
public Bucket getBucket(final String serviceName, final String bucketName);
}