This function allows you to determine the content of a process configuration.
Parameter |
Type |
Description |
|---|---|---|
$configurationName |
string |
Configuration name |
The function returns the value of the stated process configuration. In case the stated process configuration does not exist, a JobRouterException is thrown.
Example:
…
// Determining the process configuration "transfermode"
$transferMode = $this->getConfiguration('transfermode');
…