com.exasol.bucketfs.BucketFsServiceConfigurationProvider 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;
import com.exasol.config.BucketFsServiceConfiguration;
/**
* Interface for objects that can provide the configuration of a BucketFS service.
*/
public interface BucketFsServiceConfigurationProvider {
/**
* Get the BucketFS service configuration for a given service name.
*
* @param serviceName name of the service for which the configuration should be provided
* @return service configuration
*/
public BucketFsServiceConfiguration getBucketFsServiceConfiguration(String serviceName);
}