All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.exasol.bucketfs.BucketFactory Maven / Gradle / Ivy

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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy