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

com.qwlabs.storage.minio.MinioStorageBootstrap Maven / Gradle / Ivy

There is a newer version: 0.2.354
Show newest version
package com.qwlabs.storage.minio;

import io.minio.MinioAsyncClient;

public abstract class MinioStorageBootstrap {

    protected MinioAsyncClient createMinioClient(MinioConfig config) {
        config.validate();
        return MinioAsyncClient.builder()
                .endpoint(config.getUrl())
                .credentials(config.getAccessKey(), config.getSecretKey())
                .build();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy