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

io.sirix.access.json.JsonResourceSessionModule Maven / Gradle / Ivy

package io.sirix.access.json;

import dagger.Binds;
import dagger.Module;
import io.sirix.access.trx.node.json.JsonResourceSessionImpl;
import io.sirix.api.json.JsonResourceSession;
import io.sirix.dagger.ResourceSessionScope;

/**
 * The module for {@link JsonResourceSessionComponent}.
 *
 * @author Joao Sousa
 */
@Module
public interface JsonResourceSessionModule {
  @Binds
  @ResourceSessionScope
  JsonResourceSession resourceSession(JsonResourceSessionImpl resourceSession);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy