AppserverIo\Appserver\ServletEngine\Security\StandardAuthenticationManager::injectMappings PHP Method

injectMappings() public method

Inject the storage for the URL pattern to authenticator mappings.
public injectMappings ( AppserverIo\Storage\StorageInterface $mappings ) : void
$mappings AppserverIo\Storage\StorageInterface The storage instance
return void
    public function injectMappings(StorageInterface $mappings)
    {
        $this->mappings = $mappings;
    }

Usage Example

 /**
  * The main method that creates new instances in a separate context.
  *
  * @param \AppserverIo\Psr\Application\ApplicationInterface         $application          The application instance to register the class loader with
  * @param \AppserverIo\Appserver\Core\Api\Node\ManagerNodeInterface $managerConfiguration The manager configuration
  *
  * @return void
  */
 public static function visit(ApplicationInterface $application, ManagerNodeInterface $managerConfiguration)
 {
     // initialize the storage instances
     $authenticators = new StackableStorage();
     $mappings = new StackableStorage();
     // initialize the authentication manager
     $authenticationManager = new StandardAuthenticationManager();
     $authenticationManager->injectMappings($mappings);
     $authenticationManager->injectApplication($application);
     $authenticationManager->injectAuthenticators($authenticators);
     $authenticationManager->injectManagerConfiguration($managerConfiguration);
     // attach the instance
     $application->addManager($authenticationManager, $managerConfiguration);
 }