interface SimpleOauthAuthenticationProviderInterface in Simple OAuth (OAuth2) & OpenID Connect 8.2
Same name and namespace in other branches
- 8 src/Authentication/Provider/SimpleOauthAuthenticationProviderInterface.php \Drupal\simple_oauth\Authentication\Provider\SimpleOauthAuthenticationProviderInterface
@internal
Hierarchy
- interface \Drupal\Core\Authentication\AuthenticationProviderInterface
- interface \Drupal\simple_oauth\Authentication\Provider\SimpleOauthAuthenticationProviderInterface
Expanded class hierarchy of SimpleOauthAuthenticationProviderInterface
All classes that implement SimpleOauthAuthenticationProviderInterface
File
- src/
Authentication/ Provider/ SimpleOauthAuthenticationProviderInterface.php, line 11
Namespace
Drupal\simple_oauth\Authentication\ProviderView source
interface SimpleOauthAuthenticationProviderInterface extends AuthenticationProviderInterface {
/**
* Gets the access token from the request.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request object.
*
* @return bool
* TRUE if there is an access token. FALSE otherwise.
*/
public static function hasTokenValue(Request $request);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AuthenticationProviderInterface:: |
public | function | Checks whether suitable authentication credentials are on the request. | 7 |
AuthenticationProviderInterface:: |
public | function | Authenticates the user. | 7 |
SimpleOauthAuthenticationProviderInterface:: |
public static | function | Gets the access token from the request. | 1 |