com.instaclustr.cassandra.backup.local.LocalBucketService 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.local;
import com.instaclustr.cassandra.backup.impl.BucketService;
public class LocalBucketService implements BucketService {
@Override
public boolean doesExist(final String bucketName) {
return false;
}
@Override
public void createIfMissing(final String bucketname) {
}
@Override
public void create(final String bucketName) {
}
@Override
public void delete(final String bucketName) {
}
@Override
public void close() throws Exception {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy