blob: 3f7c1a44b5bf9368441330a4aa63edd087433390 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php
/**
* TJsonService and TJsonResponse class file.
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package Prado\Web\Services
*/
namespace Prado\Web\Services;
/**
* TJsonResponse Class
*
* TJsonResponse is the base class for all JSON response provider classes.
*
* Derived classes must implement {@link getJsonContent()} to return
* an object or literals to be converted to JSON format. The response
* will be empty if the returned content is null.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @package Prado\Web\Services
* @since 3.1
*/
abstract class TJsonResponse extends TApplicationComponent
{
private $_id='';
/**
* Initializes the feed.
* @param TXmlElement configurations specified in {@link TJsonService}.
*/
public function init($config)
{
}
/**
* @return string ID of this response
*/
public function getID()
{
return $this->_id;
}
/**
* @param string ID of this response
*/
public function setID($value)
{
$this->_id=$value;
}
/**
* @return object json response content, null to suppress output.
*/
abstract public function getJsonContent();
}
|