update tests
[GitHub/Stricted/speedport-hybrid-php-api.git] / tests / Data.class.php
1 <?php
2 require_once('../SpeedportHybrid.class.php');
3 /**
4 * @author Jan Altensen (Stricted)
5 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
6 * @copyright 2015 Jan Altensen (Stricted)
7 */
8 class Data extends SpeedportHybrid {
9 public function getDSL () {
10 return $this->getData('data/dsl.json');
11 }
12
13 public function getInterfaces () {
14 return $this->getData('data/interfaces.json');
15 }
16
17 public function getArp () {
18 return $this->getData('data/arp.json');
19 }
20
21 public function getSession () {
22 return $this->getData('data/session.json');
23 }
24
25 public function getDHCPClient () {
26 return $this->getData('data/dhcp_client.json');
27 }
28
29 public function getDHCPServer () {
30 return $this->getData('data/dhcp_server.json');
31 }
32
33 public function getIPv6 () {
34 return $this->getData('data/ipv6.json');
35 }
36
37 public function getDNS () {
38 return $this->getData('data/dns.json');
39 }
40
41 public function getRouting () {
42 return $this->getData('data/routing.json');
43 }
44
45 public function getIGMPProxy () {
46 return $this->getData('data/igmp_proxy.json');
47 }
48
49 public function getIGMPSnooping () {
50 return $this->getData('data/igmp_snooping.json');
51 }
52
53 public function getWLAN () {
54 return $this->getData('data/wlan.json');
55 }
56
57 public function getModule () {
58 return $this->getData('data/module.json');
59 }
60
61 public function getMemory () {
62 return $this->getData('data/memory.json');
63 }
64
65 public function getSpeed () {
66 return $this->getData('data/speed.json');
67 }
68
69 public function getWebDAV () {
70 return $this->getData('data/webdav.json');
71 }
72
73 public function getBondingClient () {
74 return $this->getData('data/bonding_client.json');
75 }
76
77 public function getBondingTunnel () {
78 return $this->getData('data/bonding_tunnel.json');
79 }
80
81 public function getFilterList () {
82 return $this->getData('data/filterlist.json');
83 }
84
85 public function getBondingTR181 () {
86 return $this->getData('data/bonding_tr181.json');
87 }
88
89 public function getLTEInfo () {
90 return $this->getData('data/letinfo.json');
91 }
92
93 public function getStatus () {
94 return $this->getData('data/Status.json');
95 }
96 }