Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-stastny committed Jan 10, 2025
2 parents e27bb1d + ba16ad5 commit d2b39a1
Show file tree
Hide file tree
Showing 462 changed files with 38,717 additions and 5,595 deletions.
12 changes: 12 additions & 0 deletions bridge/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@


dependencies {
api project(':rest')
api project(':shared:common')
api project(':processes:import')
api project(':processes:solr-migration')


}


Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package cz.incad.kramerius.fedora.impl;

import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import com.google.inject.name.Names;
import cz.incad.kramerius.FedoraAccess;
import cz.incad.kramerius.repository.KrameriusRepositoryApi;

public class CDKRepoModule extends AbstractModule {

@Override
protected void configure() {
// namapovani fedora access
this.bind(FedoraAccess.class).annotatedWith(Names.named("rawFedoraAccess")).to(FedoraAccessProxyAkubraImpl.class).in(Scopes.SINGLETON);
bind(KrameriusRepositoryApi.class).to(KrameriusRepositoryApiProxyImpl.class);
}
}
Loading

0 comments on commit d2b39a1

Please sign in to comment.