You are here

interface HttpClientAuthentication in Http Client 7.2

Same name and namespace in other branches
  1. 6.2 includes/HttpClient.inc \HttpClientAuthentication

Interface that should be implemented by classes that provides a authentication method for the http client.

Hierarchy

Expanded class hierarchy of HttpClientAuthentication

All classes that implement HttpClientAuthentication

File

includes/HttpClient.inc, line 518

View source
interface HttpClientAuthentication {

  /**
   * Used by the HttpClient to authenticate requests.
   *
   * @param HttpClientRequest $request
   * @return void
   */
  public function authenticate($request);

}

Members

Namesort descending Modifiers Type Description Overrides
HttpClientAuthentication::authenticate public function Used by the HttpClient to authenticate requests. 3