-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalyticsCapabilities.php
112 lines (97 loc) · 2.04 KB
/
AnalyticsCapabilities.php
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?php
class AnalyticsCapabilities
{
/**
* @var anyURI $XAddr
*/
protected $XAddr = null;
/**
* @var boolean $RuleSupport
*/
protected $RuleSupport = null;
/**
* @var boolean $AnalyticsModuleSupport
*/
protected $AnalyticsModuleSupport = null;
/**
* @var string $any
*/
protected $any = null;
/**
* @param anyURI $XAddr
* @param boolean $RuleSupport
* @param boolean $AnalyticsModuleSupport
* @param string $any
*/
public function __construct($XAddr, $RuleSupport, $AnalyticsModuleSupport, $any)
{
$this->XAddr = $XAddr;
$this->RuleSupport = $RuleSupport;
$this->AnalyticsModuleSupport = $AnalyticsModuleSupport;
$this->any = $any;
}
/**
* @return anyURI
*/
public function getXAddr()
{
return $this->XAddr;
}
/**
* @param anyURI $XAddr
* @return AnalyticsCapabilities
*/
public function setXAddr($XAddr)
{
$this->XAddr = $XAddr;
return $this;
}
/**
* @return boolean
*/
public function getRuleSupport()
{
return $this->RuleSupport;
}
/**
* @param boolean $RuleSupport
* @return AnalyticsCapabilities
*/
public function setRuleSupport($RuleSupport)
{
$this->RuleSupport = $RuleSupport;
return $this;
}
/**
* @return boolean
*/
public function getAnalyticsModuleSupport()
{
return $this->AnalyticsModuleSupport;
}
/**
* @param boolean $AnalyticsModuleSupport
* @return AnalyticsCapabilities
*/
public function setAnalyticsModuleSupport($AnalyticsModuleSupport)
{
$this->AnalyticsModuleSupport = $AnalyticsModuleSupport;
return $this;
}
/**
* @return string
*/
public function getAny()
{
return $this->any;
}
/**
* @param string $any
* @return AnalyticsCapabilities
*/
public function setAny($any)
{
$this->any = $any;
return $this;
}
}