1 | <?php |
||
28 | class NodeInfoResponse extends Response |
||
29 | { |
||
30 | |||
31 | const PROP_STATUS = 'status'; |
||
32 | const PROP_NAME = 'name'; |
||
33 | const PROP_CLUSTER_NAME = 'cluster_name'; |
||
34 | const PROP_VERSION = 'version'; |
||
35 | const PROP_TAGLINE = 'tagline'; |
||
36 | |||
37 | /** |
||
38 | * Getter Method |
||
39 | * |
||
40 | * @return mixed |
||
41 | * @author Daniel Wendlandt |
||
42 | */ |
||
43 | 2 | public function getVersion() |
|
49 | |||
50 | /** |
||
51 | * Getter Method |
||
52 | * |
||
53 | * @return mixed |
||
54 | * @author Daniel Wendlandt |
||
55 | */ |
||
56 | 2 | public function getName() |
|
62 | |||
63 | /** |
||
64 | * Getter Method |
||
65 | * |
||
66 | * @return mixed |
||
67 | * @author Daniel Wendlandt |
||
68 | */ |
||
69 | 2 | public function getClusterName() |
|
75 | |||
76 | /** |
||
77 | * Getter Method |
||
78 | * |
||
79 | * @return mixed |
||
80 | * @author Daniel Wendlandt |
||
81 | */ |
||
82 | 2 | public function getTagline() |
|
88 | |||
89 | } |
||
90 |