You are here

public function DeveloperController::__construct in Apigee Edge 8

DeveloperController constructor.

Parameters

\Drupal\apigee_edge\SDKConnectorInterface $connector: The SDK connector service.

\Drupal\apigee_edge\Entity\Controller\OrganizationControllerInterface $org_controller: The organization controller service.

\Drupal\apigee_edge\Entity\Controller\Cache\EntityCacheInterface $entity_cache: The entity cache used by this controller.

\Drupal\apigee_edge\Entity\Controller\Cache\EntityIdCacheInterface $entity_id_cache: The entity id cache used by this controller.

\Drupal\apigee_edge\Entity\Controller\Cache\AppCacheByOwnerFactoryInterface $app_cache_by_owner_factory: The app cache by owner factory service.

\Drupal\apigee_edge\Entity\Controller\Cache\AppNameCacheByOwnerFactoryInterface $app_name_cache_by_owner: The app name cache by owner factory service.

File

src/Entity/Controller/DeveloperController.php, line 116

Class

DeveloperController
Definition of the Developer controller service.

Namespace

Drupal\apigee_edge\Entity\Controller

Code

public function __construct(SDKConnectorInterface $connector, OrganizationControllerInterface $org_controller, EntityCacheInterface $entity_cache, EntityIdCacheInterface $entity_id_cache, AppCacheByOwnerFactoryInterface $app_cache_by_owner_factory, AppNameCacheByOwnerFactoryInterface $app_name_cache_by_owner) {
  $this->connector = $connector;
  $this->orgController = $org_controller;
  $this->entityCache = $entity_cache;
  $this->entityIdCache = $entity_id_cache;
  $this->appCacheByOwnerFactory = $app_cache_by_owner_factory;
  $this->appNameCacheByOwnerFactory = $app_name_cache_by_owner;
}