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