Package com.exasol.config
Class BucketFsServiceConfiguration
- java.lang.Object
-
- com.exasol.config.BucketFsServiceConfiguration
-
public class BucketFsServiceConfiguration extends Object
Configuration parameters for a BucketFS service (aka. "a BucketFS").
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBucketFsServiceConfiguration.BuilderBuilder forBucketFsServiceConfigurationinstances.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BucketFsServiceConfiguration.Builderbuilder()Get a builder for aBucketFsServiceConfiguration.BucketConfigurationgetBucketConfiguration(String bucketName)Get the configuration of a bucket.intgetHttpPort()Get the HTTP port the BucketFS service listens on.intgetHttpsPort()Get the HTTPS port the BucketFS service listens on.StringgetName()Get the name of the BucketFS service.
-
-
-
Method Detail
-
getName
public String getName()
Get the name of the BucketFS service.- Returns:
- bucket name
-
getHttpPort
public int getHttpPort()
Get the HTTP port the BucketFS service listens on.- Returns:
- HTTP port number
-
getHttpsPort
public int getHttpsPort()
Get the HTTPS port the BucketFS service listens on.- Returns:
- HTTPS port number
-
getBucketConfiguration
public BucketConfiguration getBucketConfiguration(String bucketName)
Get the configuration of a bucket.- Parameters:
bucketName- name of the bucket- Returns:
- bucket configuration
-
builder
public static BucketFsServiceConfiguration.Builder builder()
Get a builder for aBucketFsServiceConfiguration.- Returns:
- builder
-
-