data class Credentials
Data class for http(s) credentials. This is used for basic authentication.
Credentials(username: String, password: String)
Data class for http(s) credentials. This is used for basic authentication. |
val authString: String
Read only variable for authentication string of the basic http(s) authentication. |
|
val password: String
password of the user |
|
val username: String
the login name of the user |
fun initFrom(repo: AuthenticationSupported): Credentials
Initialize the credentials object from a Gradle repository. |