interface Oauth2TokenTypeInterface in Simple OAuth (OAuth2) & OpenID Connect 8.2
Same name and namespace in other branches
- 8.4 src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
- 8.3 src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
- 5.x src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
Provides an interface defining Access Token Type entities.
Hierarchy
- interface \Drupal\simple_oauth\Entity\ConfigEntityLockableInterface
- interface \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
Expanded class hierarchy of Oauth2TokenTypeInterface
All classes that implement Oauth2TokenTypeInterface
File
- src/
Entity/ Oauth2TokenTypeInterface.php, line 8
Namespace
Drupal\simple_oauth\EntityView source
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);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigEntityLockableInterface:: |
public | function | Checks if the entity is locked against changes. | |
ConfigEntityLockableInterface:: |
public | function | Locks the entity. | |
ConfigEntityLockableInterface:: |
public | function | Unlocks the entity. | |
Oauth2TokenTypeInterface:: |
public | function | Get the description. | 1 |
Oauth2TokenTypeInterface:: |
public | function | Set the description. | 1 |