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

com.instaclustr.cassandra.backup.local.LocalFileModule Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha8
Show newest version
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