You are here

interface Oauth2TokenTypeInterface in Simple OAuth (OAuth2) & OpenID Connect 5.x

Same name and namespace in other branches
  1. 8.4 src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
  2. 8.2 src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface
  3. 8.3 src/Entity/Oauth2TokenTypeInterface.php \Drupal\simple_oauth\Entity\Oauth2TokenTypeInterface

Provides an interface defining Access Token Type entities.

Hierarchy

Expanded class hierarchy of Oauth2TokenTypeInterface

All classes that implement Oauth2TokenTypeInterface

File

src/Entity/Oauth2TokenTypeInterface.php, line 8

Namespace

Drupal\simple_oauth\Entity
View 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

Namesort descending Modifiers Type Description Overrides
ConfigEntityLockableInterface::isLocked public function Checks if the entity is locked against changes.
ConfigEntityLockableInterface::lock public function Locks the entity.
ConfigEntityLockableInterface::unlock public function Unlocks the entity.
Oauth2TokenTypeInterface::getDescription public function Get the description. 1
Oauth2TokenTypeInterface::setDescription public function Set the description. 1