Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryExecutionTerminated
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 5
30
0.00% covered (danger)
0.00%
0 / 1
 getName
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __construct
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 getDeliveryExecution
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getReason
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getProctor
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2015 (original work) Open Assessment Technologies SA;
19 *
20 */
21
22namespace oat\taoProctoring\model\event;
23
24use oat\oatbox\event\Event;
25use oat\taoDelivery\model\execution\DeliveryExecution;
26use oat\oatbox\user\User;
27
28/**
29 * This event is fired whenever a proctor terminates
30 * a delivery execution
31 */
32class DeliveryExecutionTerminated implements Event
33{
34    /**
35     * @var DeliveryExecution
36     */
37    private $deliveryExecution;
38
39    /**
40     * @var User
41     */
42    private $proctor;
43
44    /**
45     * @var mixed
46     */
47    private $reason;
48
49    /**
50     * @return string
51     */
52    public function getName()
53    {
54        return __CLASS__;
55    }
56
57    /**
58     * QtiMoveEvent constructor.
59     * @param string $context 'before' or 'after' move
60     * @param AssessmentTestSession $session
61     * @param null|RouteItem $from
62     * @param null|RouteItem $to
63     */
64    public function __construct(DeliveryExecution $deliveryExecution, User $proctor, $reason = null)
65    {
66        $this->deliveryExecution = $deliveryExecution;
67        $this->proctor = $proctor;
68        $this->reason = $reason;
69    }
70
71    /**
72     * Returns the terminated delivery execution
73     *
74     * @return DeliveryExecution
75     */
76    public function getDeliveryExecution()
77    {
78        return $this->deliveryExecution;
79    }
80
81    /**
82     * Returns the reason for termination
83     *
84     * @return mixed
85     */
86    public function getReason()
87    {
88        return $this->reason;
89    }
90
91    /**
92     * Returns the proctor that terminated the execution
93     *
94     * @return \oat\oatbox\user\User
95     */
96    public function getProctor()
97    {
98        return $this->proctor;
99    }
100}