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

com.instaclustr.cassandra.backup.azure.AzureRemoteObjectReference Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha8
Show newest version
package com.instaclustr.cassandra.backup.azure;

import java.nio.file.Path;

import com.instaclustr.cassandra.backup.impl.RemoteObjectReference;
import com.microsoft.azure.storage.blob.CloudBlockBlob;

public class AzureRemoteObjectReference extends RemoteObjectReference {

    public final CloudBlockBlob blob;

    public AzureRemoteObjectReference(final Path objectKey,
                                      final String canonicalPath,
                                      final CloudBlockBlob blob) {
        super(objectKey, canonicalPath);
        this.blob = blob;
    }

    public Path getObjectKey() {
        return objectKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy