type = $type; $this->moduleId = $moduleId; $this->handler = $handler; $this->parameters = $parameters; } /** @deprecated Use getType() */ public function getResultType() { return $this->getType(); } public function getType() { return $this->type; } public function getModuleId() { return $this->moduleId; } public function getHandler() { return $this->handler; } public function getParameters() { return $this->parameters; } }