You are here

protected function DeveloperAppEditForm::appCredentialController in Apigee Edge 8

Returns the app specific app credential controller.

Parameters

string $owner: The developer id (UUID), email address or team (company) name.

string $app_name: The name of an app.

Return value

\Drupal\apigee_edge\Entity\Controller\AppCredentialControllerInterface The app credential controller.

Overrides AppForm::appCredentialController

File

src/Entity/Form/DeveloperAppEditForm.php, line 74

Class

DeveloperAppEditForm
General form handler for the developer app edit.

Namespace

Drupal\apigee_edge\Entity\Form

Code

protected function appCredentialController(string $owner, string $app_name) : AppCredentialControllerInterface {
  return $this->appCredentialControllerFactory
    ->developerAppCredentialController($owner, $app_name);
}