You are here

interface KeyTypeAuthenticationMethodInterface in Apigee Edge 8

Interface for creating the required authentication method object.

Hierarchy

Expanded class hierarchy of KeyTypeAuthenticationMethodInterface

All classes that implement KeyTypeAuthenticationMethodInterface

File

src/Plugin/KeyTypeAuthenticationMethodInterface.php, line 28

Namespace

Drupal\apigee_edge\Plugin
View source
interface KeyTypeAuthenticationMethodInterface {

  /**
   * Gets the authentication method object.
   *
   * @param \Drupal\key\KeyInterface $key
   *   The key entity.
   *
   * @return \Http\Message\Authentication
   *   The authentication object.
   */
  public function getAuthenticationMethod(KeyInterface $key) : Authentication;

}

Members