PHP Class AppserverIo\Appserver\Core\Api\Node\ProvisionerNode

Inheritance: extends AppserverIo\Description\Api\Node\AbstractNode, implements AppserverIo\Appserver\Core\Api\Node\ProvisionerNodeInterface
Show file Open project: appserver-io/appserver

Protected Properties

Property Type Description
$factory string The managers factory class name.
$name string The provisioner name.
$type string The provisioner type.

Public Methods

Method Description
__construct ( string $name = '', string $type = '', string $factory = '' ) Initializes the provisioner node with the necessary data.
getFactory ( ) : string Returns the factory class name.
getName ( ) : string Returns the provisioner name.
getPrimaryKey ( ) : string Returns the nodes primary key, the name by default.
getType ( ) : string Returns the provisioner type.

Method Details

__construct() public method

Initializes the provisioner node with the necessary data.
public __construct ( string $name = '', string $type = '', string $factory = '' )
$name string The provisioner name
$type string The provisioner type
$factory string The provisioners factory class name

getFactory() public method

Returns the factory class name.
public getFactory ( ) : string
return string The factory class name

getName() public method

Returns the provisioner name.
public getName ( ) : string
return string The provisioner name

getPrimaryKey() public method

Returns the nodes primary key, the name by default.
See also: AppserverIo\Appserver\Core\Api\Node\AbstractNode::getPrimaryKey()
public getPrimaryKey ( ) : string
return string The nodes primary key

getType() public method

Returns the provisioner type.
public getType ( ) : string
return string The provisioner type

Property Details

$factory protected property

The managers factory class name.
protected string $factory
return string

$name protected property

The provisioner name.
protected string $name
return string

$type protected property

The provisioner type.
protected string $type
return string