interface ResourceServerInterface in Simple OAuth (OAuth2) & OpenID Connect 8.2
Same name and namespace in other branches
- 8.4 src/Server/ResourceServerInterface.php \Drupal\simple_oauth\Server\ResourceServerInterface
- 8.3 src/Server/ResourceServerInterface.php \Drupal\simple_oauth\Server\ResourceServerInterface
- 5.x src/Server/ResourceServerInterface.php \Drupal\simple_oauth\Server\ResourceServerInterface
Hierarchy
- interface \Drupal\simple_oauth\Server\ResourceServerInterface
Expanded class hierarchy of ResourceServerInterface
All classes that implement ResourceServerInterface
3 files declare their use of ResourceServerInterface
- DisallowSimpleOauthRequests.php in src/
PageCache/ DisallowSimpleOauthRequests.php - SimpleOauthAuthenticationProvider.php in src/
Authentication/ Provider/ SimpleOauthAuthenticationProvider.php - SimpleOauthAuthenticationTest.php in tests/
src/ Unit/ Authentication/ Provider/ SimpleOauthAuthenticationTest.php
File
- src/
Server/ ResourceServerInterface.php, line 9
Namespace
Drupal\simple_oauth\ServerView source
interface ResourceServerInterface {
/**
* Determine the access token validity.
*
* @param \Symfony\Component\HttpFoundation\Request $request
* The request object.
*
* @throws \League\OAuth2\Server\Exception\OAuthServerException
*
* @return \Symfony\Component\HttpFoundation\Request
* The request object augmented with the token information.
*/
public function validateAuthenticatedRequest(Request $request);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ResourceServerInterface:: |
public | function | Determine the access token validity. | 1 |