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

org.opentripplanner.transit.configure.TransitModule Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
package org.opentripplanner.transit.configure;

import dagger.Binds;
import dagger.Module;
import org.opentripplanner.standalone.api.HttpRequestScoped;
import org.opentripplanner.transit.service.DefaultTransitService;
import org.opentripplanner.transit.service.TransitService;

@Module
public abstract class TransitModule {

  @Binds
  @HttpRequestScoped
  abstract TransitService bind(DefaultTransitService service);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy