PHP Interface AppserverIo\Appserver\Core\Api\Node\ContainerNodeInterface

Author: Tim Wagner ([email protected])
Author: Johann Zelger ([email protected])
Inheritance: extends AppserverIo\Configuration\Interfaces\NodeInterface
Show file Open project: appserver-io/appserver Interface Usage Examples

Public Methods

Method Description
getClassLoaders ( ) : array Returns the contexts class loader configuration.
getDeployment ( ) : DeploymentNode Returns the deployment configuration information.
getDescription ( ) : DescriptionNode Returns the receiver description.
getHost ( ) : HostNode Returns the host configuration information.
getName ( ) : string Returns the unique container name.
getProvisioning ( ) : boolean Returns TRUE if application provisioning for the container is enabled, else FALSE.
getServers ( ) : array Return's all server nodes.
getThreadType ( ) : string Returns the thread class name that start's the containere.
getType ( ) : string Returns the container's class name.
getUpstreams ( ) : array Return's all upstream nodes.
setClassLoaders ( array $classLoaders ) : void Sets the contexts class loader configuration.

Method Details

getClassLoaders() public method

Returns the contexts class loader configuration.
public getClassLoaders ( ) : array
return array The contexts class loader configuration

getDeployment() public method

Returns the deployment configuration information.
public getDeployment ( ) : DeploymentNode
return DeploymentNode The deployment configuration information

getDescription() public method

Returns the receiver description.
public getDescription ( ) : DescriptionNode
return DescriptionNode The receiver description

getHost() public method

Returns the host configuration information.
public getHost ( ) : HostNode
return HostNode The host configuration information

getName() public method

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

getProvisioning() public method

Returns TRUE if application provisioning for the container is enabled, else FALSE.
public getProvisioning ( ) : boolean
return boolean TRUE if application provisioning is enabled, else FALSE

getServers() public method

Return's all server nodes.
public getServers ( ) : array
return array

getThreadType() public method

Returns the thread class name that start's the containere.
public getThreadType ( ) : string
return string The thread class name that start's the container

getType() public method

Returns the container's class name.
public getType ( ) : string
return string The container's class name

getUpstreams() public method

Return's all upstream nodes.
public getUpstreams ( ) : array
return array

setClassLoaders() public method

Sets the contexts class loader configuration.
public setClassLoaders ( array $classLoaders ) : void
$classLoaders array The contexts class loader configuration
return void