deliveryExecution = $deliveryExecution; $this->proctor = $proctor; $this->reason = $reason; } /** * Returns the terminated delivery execution * * @return DeliveryExecution */ public function getDeliveryExecution() { return $this->deliveryExecution; } /** * Returns the reason for termination * * @return mixed */ public function getReason() { return $this->reason; } /** * Returns the proctor that terminated the execution * * @return \oat\oatbox\user\User */ public function getProctor() { return $this->proctor; } }