Oauth2TokenTypeInterface.php in Simple OAuth (OAuth2) & OpenID Connect 5.x
Same filename and directory in other branches
Namespace
Drupal\simple_oauth\EntityFile
src/Entity/Oauth2TokenTypeInterface.phpView source
<?php
namespace Drupal\simple_oauth\Entity;
/**
* Provides an interface defining Access Token Type entities.
*/
interface Oauth2TokenTypeInterface extends ConfigEntityLockableInterface {
/**
* Get the description.
*
* @return string
* The description
*/
public function getDescription();
/**
* Set the description.
*
* @param string $description
* The description.
*/
public function setDescription($description);
}
Interfaces
Name | Description |
---|---|
Oauth2TokenTypeInterface | Provides an interface defining Access Token Type entities. |