Completed
Pull Request — master (#9)
by Asmir
116:39 queued 86:42
created

DSAKeyValueType::setSeed()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
1
<?php
2
3
namespace GoetasWebservices\SoapServices\SoapClient\WssWsSecurity\XmlSign;
4
5
/**
6
 * Class representing DSAKeyValueType
7
 *
8
 *
9
 * XSD Type: DSAKeyValueType
10
 */
11
class DSAKeyValueType
12
{
13
14
    /**
15
     * @property mixed $p
16
     */
17
    private $p = null;
18
19
    /**
20
     * @property mixed $q
21
     */
22
    private $q = null;
23
24
    /**
25
     * @property mixed $g
26
     */
27
    private $g = null;
28
29
    /**
30
     * @property mixed $y
31
     */
32
    private $y = null;
33
34
    /**
35
     * @property mixed $j
36
     */
37
    private $j = null;
38
39
    /**
40
     * @property mixed $seed
41
     */
42
    private $seed = null;
43
44
    /**
45
     * @property mixed $pgenCounter
46
     */
47
    private $pgenCounter = null;
48
49
    /**
50
     * Gets as p
51
     *
52
     * @return mixed
53
     */
54
    public function getP()
55
    {
56
        return $this->p;
57
    }
58
59
    /**
60
     * Sets a new p
61
     *
62
     * @param mixed $p
63
     * @return self
64
     */
65
    public function setP($p)
66
    {
67
        $this->p = $p;
68
        return $this;
69
    }
70
71
    /**
72
     * Gets as q
73
     *
74
     * @return mixed
75
     */
76
    public function getQ()
77
    {
78
        return $this->q;
79
    }
80
81
    /**
82
     * Sets a new q
83
     *
84
     * @param mixed $q
85
     * @return self
86
     */
87
    public function setQ($q)
88
    {
89
        $this->q = $q;
90
        return $this;
91
    }
92
93
    /**
94
     * Gets as g
95
     *
96
     * @return mixed
97
     */
98
    public function getG()
99
    {
100
        return $this->g;
101
    }
102
103
    /**
104
     * Sets a new g
105
     *
106
     * @param mixed $g
107
     * @return self
108
     */
109
    public function setG($g)
110
    {
111
        $this->g = $g;
112
        return $this;
113
    }
114
115
    /**
116
     * Gets as y
117
     *
118
     * @return mixed
119
     */
120
    public function getY()
121
    {
122
        return $this->y;
123
    }
124
125
    /**
126
     * Sets a new y
127
     *
128
     * @param mixed $y
129
     * @return self
130
     */
131
    public function setY($y)
132
    {
133
        $this->y = $y;
134
        return $this;
135
    }
136
137
    /**
138
     * Gets as j
139
     *
140
     * @return mixed
141
     */
142
    public function getJ()
143
    {
144
        return $this->j;
145
    }
146
147
    /**
148
     * Sets a new j
149
     *
150
     * @param mixed $j
151
     * @return self
152
     */
153
    public function setJ($j)
154
    {
155
        $this->j = $j;
156
        return $this;
157
    }
158
159
    /**
160
     * Gets as seed
161
     *
162
     * @return mixed
163
     */
164
    public function getSeed()
165
    {
166
        return $this->seed;
167
    }
168
169
    /**
170
     * Sets a new seed
171
     *
172
     * @param mixed $seed
173
     * @return self
174
     */
175
    public function setSeed($seed)
176
    {
177
        $this->seed = $seed;
178
        return $this;
179
    }
180
181
    /**
182
     * Gets as pgenCounter
183
     *
184
     * @return mixed
185
     */
186
    public function getPgenCounter()
187
    {
188
        return $this->pgenCounter;
189
    }
190
191
    /**
192
     * Sets a new pgenCounter
193
     *
194
     * @param mixed $pgenCounter
195
     * @return self
196
     */
197
    public function setPgenCounter($pgenCounter)
198
    {
199
        $this->pgenCounter = $pgenCounter;
200
        return $this;
201
    }
202
203
204
}
205
206