You are here

public function AppCacheInterface::getAppsByOwner in Apigee Edge 8

Returns an app from the cache by its owner.

Only developer id (UUID) and company name can be used as owner because this is what is stored on the app entities.

Parameters

string $owner: Developer id (UUID) or company name.

Return value

\Apigee\Edge\Api\Management\Entity\AppInterface[] Array of apps that belongs to this owner in cache or null if no entry found in cache for this owner.

1 method overrides AppCacheInterface::getAppsByOwner()
AppCache::getAppsByOwner in src/Entity/Controller/Cache/AppCache.php
Returns an app from the cache by its owner.

File

src/Entity/Controller/Cache/AppCacheInterface.php, line 45

Class

AppCacheInterface
Base definition of an app cache for app controllers.

Namespace

Drupal\apigee_edge\Entity\Controller\Cache

Code

public function getAppsByOwner(string $owner) : ?array;