You are here

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

File

src/Entity/Oauth2TokenTypeInterface.php
View 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

Namesort descending Description
Oauth2TokenTypeInterface Provides an interface defining Access Token Type entities.