AppserverIo\Appserver\Core\ApplicationServer::doLoadBootstrap PHP 메소드

doLoadBootstrap() 보호된 메소드

Loads the bootstrap configuration from the XML file.
protected doLoadBootstrap ( $bootstrapConfigurationFilename ) : BootstrapNode
리턴 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;
    }