AppserverIo\Appserver\Core\Api\Node\ManagerNode::__construct PHP Method

__construct() public method

Initializes the manager configuration with the passed values.
public __construct ( string $name = '', string $type = '', string $factory = '', string $contextFactory = '' )
$name string The unique manager name
$type string The manager class name
$factory string The managers factory class name
$contextFactory string The context factory class name
    public function __construct($name = '', $type = '', $factory = '', $contextFactory = '')
    {
        $this->name = $name;
        $this->type = $type;
        $this->factory = $factory;
        $this->contextFactory = $contextFactory;
    }