AppserverIo\Appserver\Core\ApplicationServer::doLoadBootstrap PHP Method

doLoadBootstrap() protected method

Loads the bootstrap configuration from the XML file.
protected doLoadBootstrap ( $bootstrapConfigurationFilename ) : BootstrapNode
return AppserverIo\Appserver\Core\Api\Node\BootstrapNode The boostrap configuration
    protected function doLoadBootstrap($bootstrapConfigurationFilename)
    {
        // initialize the bootstrap configuration
        $bootstrapNode = new BootstrapNode();
        $bootstrapNode->initFromFile($bootstrapConfigurationFilename);
        // return the bootstrap configuration
        return $bootstrapNode;
    }