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

net.dankito.utils.credentials.UsernamePasswordCredentials.kt Maven / Gradle / Ivy

There is a newer version: 1.0.20
Show newest version
package net.dankito.utils.credentials


class UsernamePasswordCredentials(
        val username: String,
        val password: String)
    : ICredentials {

    override fun toString(): String {
        return username
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy