com.instaclustr.cassandra.backup.local.LocalFileModule 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 static com.instaclustr.cassandra.backup.guice.BackupRestoreBindings.installBindings;
import com.google.inject.AbstractModule;
public class LocalFileModule extends AbstractModule {
@Override
protected void configure() {
installBindings(binder(),
"file",
LocalFileRestorer.class,
LocalFileBackuper.class,
LocalBucketService.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy