interface TeamAppCredentialControllerFactoryInterface in Apigee Edge 8
Base definition of the team app credential factory service.
Hierarchy
- interface \Drupal\apigee_edge_teams\Entity\Controller\TeamAppCredentialControllerFactoryInterface
Expanded class hierarchy of TeamAppCredentialControllerFactoryInterface
All classes that implement TeamAppCredentialControllerFactoryInterface
2 files declare their use of TeamAppCredentialControllerFactoryInterface
- TeamAppCreateFormBase.php in modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamAppCreateFormBase.php - TeamAppEditForm.php in modules/
apigee_edge_teams/ src/ Entity/ Form/ TeamAppEditForm.php
File
- modules/
apigee_edge_teams/ src/ Entity/ Controller/ TeamAppCredentialControllerFactoryInterface.php, line 26
Namespace
Drupal\apigee_edge_teams\Entity\ControllerView source
interface TeamAppCredentialControllerFactoryInterface {
/**
* Returns a preconfigured controller for the owner's app.
*
* @param string $owner
* The name of a team (company).
* @param string $app_name
* Name of an app. (Not an app id, because app credentials endpoints does
* not allow to use them.)
*
* @return \Drupal\apigee_edge_teams\Entity\Controller\TeamAppCredentialControllerInterface
* The team app credentials controller.
*/
public function teamAppCredentialController(string $owner, string $app_name) : TeamAppCredentialControllerInterface;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TeamAppCredentialControllerFactoryInterface:: |
public | function | Returns a preconfigured controller for the owner's app. | 1 |