interface AppWarningsCheckerInterface in Apigee Edge 8
Defines an interface for an app warnings checker service.
Hierarchy
- interface \Drupal\apigee_edge\Entity\AppWarningsCheckerInterface
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\EntityView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AppWarningsCheckerInterface:: |
public | function | Checks credentials of an app and returns warnings about them. | 1 |