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

Inheritance: extends AppserverIo\Psr\Application\ManagerConfigurationInterface, extends AppserverIo\Configuration\Interfaces\NodeInterface
Show file Open project: appserver-io/appserver Interface Usage Examples

Public Methods

Method Description
getAuthenticators ( ) : array Returns the authenticator configuration.
getContextFactory ( ) : string Returns the context factory class name.
getDescriptors ( ) : array Array with the descriptors.
getDirectories ( ) : DirectoryNode[] Array with the directories.
getFactory ( ) : string Returns the factory class name.
getParam ( string $name ) : mixed Returns the param with the passed name casted to the specified type.
getParams ( ) : array Array with the handler params to use.
getParamsAsArray ( ) : array Returns the params casted to the defined type as associative array.
getSecurityDomains ( ) : array Returns the security domain configuration.
getType ( ) : string Returns the class name.
setAuthenticators ( array $authenticators ) : void Sets the authenticator configuration.
setDescriptors ( array $descriptors ) : void Array with the descriptors.
setDirectories ( array $directories ) : void Array with the directories.
setParam ( string $name, string $type, mixed $value ) : void Sets the param with the passed name, type and value.
setParams ( array $params ) : void Array with the handler params to use.
setSecurityDomains ( array $securityDomains ) : void Sets the security domain configuration.

Method Details

getAuthenticators() public method

Returns the authenticator configuration.
public getAuthenticators ( ) : array
return array The authenticator configuration

getContextFactory() public method

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

getDescriptors() public method

Array with the descriptors.
public getDescriptors ( ) : array
return array

getDirectories() public method

Array with the directories.
public getDirectories ( ) : DirectoryNode[]
return DirectoryNode[]

getFactory() public method

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

getParam() public method

Returns the param with the passed name casted to the specified type.
public getParam ( string $name ) : mixed
$name string The name of the param to be returned
return mixed The requested param casted to the specified type

getParams() public method

Array with the handler params to use.
public getParams ( ) : array
return array

getParamsAsArray() public method

Returns the params casted to the defined type as associative array.
public getParamsAsArray ( ) : array
return array The array with the casted params

getSecurityDomains() public method

Returns the security domain configuration.
public getSecurityDomains ( ) : array
return array The security domain configuration

getType() public method

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

setAuthenticators() public method

Sets the authenticator configuration.
public setAuthenticators ( array $authenticators ) : void
$authenticators array The authenticator configuration
return void

setDescriptors() public method

Array with the descriptors.
public setDescriptors ( array $descriptors ) : void
$descriptors array The descriptors
return void

setDirectories() public method

Array with the directories.
public setDirectories ( array $directories ) : void
$directories array The directories
return void

setParam() public method

Sets the param with the passed name, type and value.
public setParam ( string $name, string $type, mixed $value ) : void
$name string The param name
$type string The param type
$value mixed The param value
return void

setParams() public method

Array with the handler params to use.
public setParams ( array $params ) : void
$params array The handler params
return void

setSecurityDomains() public method

Sets the security domain configuration.
public setSecurityDomains ( array $securityDomains ) : void
$securityDomains array The security domain configuration
return void