AppserverIo\Appserver\AspectContainer\AspectManager::registerAspects PHP Method

registerAspects() protected method

Registers the message beans at startup.
protected registerAspects ( AppserverIo\Psr\Application\ApplicationInterface $application ) : void
$application AppserverIo\Psr\Application\ApplicationInterface The application instance
return void
    protected function registerAspects(ApplicationInterface $application)
    {
        // try both sources for pointcuts/aspects, XML and class files
        $this->registerAspectClasses($application);
        $this->registerAspectXml($application);
    }