You are here

interface AppWarningsCheckerInterface in Apigee Edge 8

Defines an interface for an app warnings checker service.

Hierarchy

Expanded class hierarchy of AppWarningsCheckerInterface

All classes that implement AppWarningsCheckerInterface

1 file declares its use of AppWarningsCheckerInterface
AppListBuilder.php in src/Entity/ListBuilder/AppListBuilder.php

File

src/Entity/AppWarningsCheckerInterface.php, line 26

Namespace

Drupal\apigee_edge\Entity
View source
interface AppWarningsCheckerInterface {

  /**
   * Checks credentials of an app and returns warnings about them.
   *
   * @param \Drupal\apigee_edge\Entity\AppInterface $app
   *   The app entity to be checked.
   *
   * @return array
   *   An associative array that contains information about the revoked
   *   credentials and revoked or pending API products in a credential.
   */
  public function getWarnings(AppInterface $app) : array;

}

Members

Namesort descending Modifiers Type Description Overrides
AppWarningsCheckerInterface::getWarnings public function Checks credentials of an app and returns warnings about them. 1