Package org.gradle.caching.http
Class HttpBuildCacheCredentials
- java.lang.Object
-
- org.gradle.caching.http.HttpBuildCacheCredentials
-
- All Implemented Interfaces:
Credentials
,PasswordCredentials
@Incubating public class HttpBuildCacheCredentials extends Object implements PasswordCredentials
Password credentials for a HTTP build cache backend.- Since:
- 3.5
-
-
Constructor Summary
Constructors Constructor Description HttpBuildCacheCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPassword()
Returns the password to use when authenticating to the HTTP build cache.String
getUsername()
Returns the user name to use when authenticating to the HTTP build cache.void
setPassword(String password)
Sets the password to use when authenticating to the HTTP build cache.void
setUsername(String username)
Sets the user name to use when authenticating to the HTTP build cache.
-
-
-
Method Detail
-
getUsername
public String getUsername()
Returns the user name to use when authenticating to the HTTP build cache.- Specified by:
getUsername
in interfacePasswordCredentials
- Returns:
- The user name. May be null.
-
setUsername
public void setUsername(String username)
Sets the user name to use when authenticating to the HTTP build cache.- Specified by:
setUsername
in interfacePasswordCredentials
- Parameters:
username
- The user name. May be null.
-
getPassword
public String getPassword()
Returns the password to use when authenticating to the HTTP build cache.- Specified by:
getPassword
in interfacePasswordCredentials
- Returns:
- The password. May be null.
-
setPassword
public void setPassword(String password)
Sets the password to use when authenticating to the HTTP build cache.- Specified by:
setPassword
in interfacePasswordCredentials
- Parameters:
password
- The password. May be null.
-
-