File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
src/main/kotlin/org/radarbase/push/integration/fitbit/user Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ package org.radarbase.push.integration.fitbit.user
2+
3+ import org.radarbase.push.integration.common.user.User
4+ import org.radarbase.push.integration.common.user.UserRepository
5+
6+ class FitbitUserRepository : UserRepository {
7+ override fun get (key : String ): User ? {
8+ TODO (" Not yet implemented" )
9+ }
10+
11+ override fun stream (): Sequence <User > {
12+ TODO (" Not yet implemented" )
13+ }
14+
15+ override fun getAccessToken (user : User ): String {
16+ TODO (" Not yet implemented" )
17+ }
18+
19+ override fun getRefreshToken (user : User ): String {
20+ TODO (" Not yet implemented" )
21+ }
22+
23+ override fun hasPendingUpdates (): Boolean {
24+ TODO (" Not yet implemented" )
25+ }
26+
27+ override fun applyPendingUpdates () {
28+ TODO (" Not yet implemented" )
29+ }
30+ }
You can’t perform that action at this time.
0 commit comments