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 Details

    • HttpBuildCacheCredentials

      public HttpBuildCacheCredentials()
  • Method Details

    • getUsername

      public String getUsername()
      Returns the user name to use when authenticating to the HTTP build cache.
      Specified by:
      getUsername in interface PasswordCredentials
      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 interface PasswordCredentials
      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 interface PasswordCredentials
      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 interface PasswordCredentials
      Parameters:
      password - The password. May be null.