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

com.uid2.shared.cloud.PreSignedURLStorage Maven / Gradle / Ivy

package com.uid2.shared.cloud;

import java.net.Proxy;
import java.util.ArrayList;
import java.util.List;

public class PreSignedURLStorage extends URLStorageWithMetadata {
    private static final List EMPTY_LIST = new ArrayList<>();

    public PreSignedURLStorage() {
    }

    public PreSignedURLStorage(Proxy proxy) {
        super(proxy);
    }

    @Override
    protected List extractListFromMetadata() throws CloudStorageException {
        return EMPTY_LIST;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy