
org.opentripplanner.ext.stopconsolidation.configure.StopConsolidationRepositoryModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
The newest version!
package org.opentripplanner.ext.stopconsolidation.configure;
import dagger.Binds;
import dagger.Module;
import javax.annotation.Nullable;
import org.opentripplanner.ext.stopconsolidation.StopConsolidationRepository;
import org.opentripplanner.ext.stopconsolidation.internal.DefaultStopConsolidationRepository;
/**
* The repository is used during application loading phase, so we need to provide
* a module for the repository.
*/
@Module
public interface StopConsolidationRepositoryModule {
@Binds
@Nullable
StopConsolidationRepository bindRepository(@Nullable DefaultStopConsolidationRepository repo);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy