Advertisement
Guest User

Untitled

a guest
Nov 19th, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 1.23 KB | None | 0 0
  1.     @org.jetbrains.annotations.NotNull()
  2.     @javax.inject.Singleton()
  3.     @com.myapp.di.AppModule.Local()
  4.     @dagger.Provides()
  5.     public final com.myapp.repository.AuthenticationDataSource provideAuthLocalDataSource(@org.jetbrains.annotations.NotNull()
  6.     com.myapp.model.AppPreferencesHandler appPreferencesHandler) {
  7.         return null;
  8.     }
  9.    
  10.     @org.jetbrains.annotations.NotNull()
  11.     @javax.inject.Singleton()
  12.     @com.myapp.di.AppModule.Remote()
  13.     @dagger.Provides()
  14.     public final com.myapp.repository.AuthenticationDataSource provideAuthRemoteDataSource() {
  15.         return null;
  16.     }
  17.    
  18.     @org.jetbrains.annotations.NotNull()
  19.     @javax.inject.Singleton()
  20.     @dagger.Provides()
  21.     public final com.myapp.repository.AuthenticationRepository providesAuthenticationRepository(@org.jetbrains.annotations.NotNull()
  22.     @com.myapp.di.AppModule.Remote()
  23.     com.myapp.repository.AuthenticationDataSource remoteDataSource, @org.jetbrains.annotations.NotNull()
  24.     @com.myapp.di.AppModule.Local()
  25.     com.myapp.repository.AuthenticationDataSource localDataSource, @org.jetbrains.annotations.NotNull()
  26.     com.myapp.repository.ConfigurationFileDataSource configurationFileDataSource) {
  27.         return null;
  28.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement