Interface HttpHeaderCredentials

All Superinterfaces:
Credentials

public interface HttpHeaderCredentials extends Credentials
Credentials that can be used to login to a protected server, e.g. a remote repository by using HTTP header. The properties used for creating credentials from a property are repoAuthHeaderName and repoAuthHeaderValue, where repo is the identity of the repository.
Since:
4.10
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the header name to use when authenticating.
    Returns the header value to use when authenticating.
    void
    Sets the header name to use when authenticating.
    void
    Sets the header value to use when authenticating.
  • Method Details

    • getName

      @Nullable String getName()
      Returns the header name to use when authenticating.
      Returns:
      The header name. May be null.
    • setName

      void setName(@Nullable String name)
      Sets the header name to use when authenticating.
      Parameters:
      name - The header name. May be null.
    • getValue

      @Nullable String getValue()
      Returns the header value to use when authenticating.
      Returns:
      The header value. May be null.
    • setValue

      void setValue(@Nullable String value)
      Sets the header value to use when authenticating.
      Parameters:
      value - The header value. May be null.