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

org.sirix.access.json.JsonResourceManagerModule Maven / Gradle / Ivy

package org.sirix.access.json;

import dagger.Binds;
import dagger.Module;
import org.sirix.access.trx.node.json.JsonResourceManagerImpl;
import org.sirix.api.json.JsonResourceManager;
import org.sirix.dagger.ResourceManagerScope;

/**
 * The module for {@link JsonResourceManagerComponent}.
 *
 * @author Joao Sousa
 */
@Module
public interface JsonResourceManagerModule {

    @Binds
    @ResourceManagerScope
    JsonResourceManager resourceManager(JsonResourceManagerImpl resourceManager);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy