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

com.qwlabs.storage.s3.S3StorageEngine Maven / Gradle / Ivy

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


import com.qwlabs.storage.models.GetDownloadUrlCommand;
import com.qwlabs.storage.services.StorageEngine;


public class S3StorageEngine implements StorageEngine {
    protected final CustomS3Client s3Client;

    public S3StorageEngine(CustomS3Client s3Client) {
        this.s3Client = s3Client;
    }

    @Override
    public String getDownloadUrl(GetDownloadUrlCommand command) {
        return this.s3Client.createDownloadUrl(command.getBucket(), command.getObjectName());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy