You are here

OAuth2StorageInterface.php in OAuth2 Server 8

Same filename and directory in other branches
  1. 2.0.x src/OAuth2StorageInterface.php

File

src/OAuth2StorageInterface.php
View source
<?php

namespace Drupal\oauth2_server;

use OAuth2\OpenID\Storage\AuthorizationCodeInterface as OAuth2AuthorizationCodeInterface;
use OAuth2\OpenID\Storage\UserClaimsInterface;
use OAuth2\Storage\AccessTokenInterface;
use OAuth2\Storage\ClientCredentialsInterface;
use OAuth2\Storage\JwtBearerInterface;
use OAuth2\Storage\RefreshTokenInterface;
use OAuth2\Storage\UserCredentialsInterface;
use OAuth2\Storage\PublicKeyInterface;

/**
 * Interface OAuth2 Storage Interface.
 *
 * @package Drupal\oauth2_server
 */
interface OAuth2StorageInterface extends OAuth2AuthorizationCodeInterface, AccessTokenInterface, ClientCredentialsInterface, JwtBearerInterface, RefreshTokenInterface, UserCredentialsInterface, UserClaimsInterface, PublicKeyInterface {

}

Interfaces

Namesort descending Description
OAuth2StorageInterface Interface OAuth2 Storage Interface.