1 | <?php |
||
26 | class Module extends Response |
||
27 | { |
||
28 | /** |
||
29 | * @var string The description of this module |
||
30 | */ |
||
31 | private $description; |
||
32 | |||
33 | /** |
||
34 | * @var string The name of this module |
||
35 | */ |
||
36 | private $name; |
||
37 | |||
38 | /** |
||
39 | * @var string The running status of this module |
||
40 | */ |
||
41 | private $status; |
||
42 | |||
43 | /** |
||
44 | * @var string The support state of this module |
||
45 | */ |
||
46 | private $supportLevel; |
||
47 | |||
48 | /** |
||
49 | * @var integer The number of times this module is being used |
||
50 | */ |
||
51 | private $useCount; |
||
52 | |||
53 | /** |
||
54 | * @return string The description of this module |
||
55 | */ |
||
56 | public function getDescription() |
||
60 | |||
61 | /** |
||
62 | * @return string The name of this module |
||
63 | */ |
||
64 | public function getName() |
||
68 | |||
69 | /** |
||
70 | * @return string The running status of this module |
||
71 | */ |
||
72 | public function getStatus() |
||
76 | |||
77 | /** |
||
78 | * @return string The support state of this module |
||
79 | */ |
||
80 | public function getType() |
||
84 | |||
85 | /** |
||
86 | * @return integer The number of times this module is being used |
||
87 | */ |
||
88 | public function getUseCount() |
||
92 | |||
93 | /** |
||
94 | * @param string $response |
||
95 | */ |
||
96 | public function __construct($response) |
||
106 | |||
107 | } |
||
108 |