use of com.instaclustr.esop.gcp.GCPModule in project esop by instaclustr.
the class StorageModules method configure.
@Override
protected void configure() {
install(new KubernetesApiModule());
install(new S3Module());
install(new AzureModule());
install(new GCPModule());
install(new LocalFileModule());
install(new OracleModule());
install(new MinioModule());
install(new CephModule());
}
use of com.instaclustr.esop.gcp.GCPModule in project esop by instaclustr.
the class BaseGoogleStorageBackupRestoreTest method inject.
public void inject() {
final List<Module> modules = new ArrayList<Module>() {
{
add(new KubernetesApiModule());
add(new GCPModule());
}
};
modules.addAll(defaultModules);
final Injector injector = Guice.createInjector(modules);
injector.injectMembers(this);
}
Aggregations