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

com.deque.networking.models.auth.AuthSource.kt Maven / Gradle / Ivy

There is a newer version: 5.5.2
Show newest version
package com.deque.networking.models.auth

interface AuthSource {

    companion object {
        const val API_KEY_HEADER = "X-Api-Key"
        const val ACCESS_TOKEN_HEADER = "authorization"
    }
    fun getToken(): String
    fun getAuthHeader(): String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy