com.instaclustr.cassandra.backup.aws.S3RemoteObjectReference Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of instaclustr-backup-restore Show documentation
Show all versions of instaclustr-backup-restore Show documentation
Backup and restoration tooling for Cassandra
package com.instaclustr.cassandra.backup.aws;
import java.nio.file.Path;
import com.instaclustr.cassandra.backup.impl.RemoteObjectReference;
public class S3RemoteObjectReference extends RemoteObjectReference {
public S3RemoteObjectReference(final Path objectKey, final String canonicalPath) {
super(objectKey, canonicalPath);
}
@Override
public Path getObjectKey() {
return objectKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy