You are here

public function RestResourceConfig::getAuthenticationProviders in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Entity/RestResourceConfig.php \Drupal\rest\Entity\RestResourceConfig::getAuthenticationProviders()

Retrieves a list of supported authentication providers.

Parameters

string $method: The request method e.g GET or POST.

Return value

string[] A list of supported authentication provider IDs.

Overrides RestResourceConfigInterface::getAuthenticationProviders

File

core/modules/rest/src/Entity/RestResourceConfig.php, line 151

Class

RestResourceConfig
Defines a RestResourceConfig configuration entity class.

Namespace

Drupal\rest\Entity

Code

public function getAuthenticationProviders($method) {
  switch ($this->granularity) {
    case RestResourceConfigInterface::METHOD_GRANULARITY:
      return $this
        ->getAuthenticationProvidersForMethodGranularity($method);
    case RestResourceConfigInterface::RESOURCE_GRANULARITY:
      return $this->configuration['authentication'];
    default:
      throw new \InvalidArgumentException('Invalid granularity specified.');
  }
}