Blame view

src/Request/RequestDataClass.php 606 Bytes
22521f1c   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php

/**
 * @class RequestDataClass
 * @brief Common request data
 * @details
 */
class RequestDataClass
{
	private $success;
	private $lastErrorMessage;

	function __construct()
	{
		$this->success = false;
		$this->lastErrorMessage = "Unknown error";
	}

	public function getSuccess()
	{
		return $this->success;
	}

	public function setSuccess($success)
	{
		$this->success = $success;
	}

	public function getLastErrorMessage()
	{
		return $this->lastErrorMessage;
	}

	public function setLastErrorMessage($error)
	{
		$this->lastErrorMessage = $error;
	}
}

?>