CorpMemberTracking::getRoles()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Tarioch\EveapiFetcherBundle\Entity;
3
4
use Doctrine\ORM\Mapping as ORM;
5
6
/**
7
 * @ORM\Entity
8
 * @ORM\Table(name="corpMemberTracking")
9
 */
10
class CorpMemberTracking
11
{
12
    /**
13
     * @ORM\Id @ORM\GeneratedValue @ORM\Column(name="ID", type="bigint", options={"unsigned"=true})
14
     */
15
    private $id;
16
17
    /**
18
     * @ORM\Column(name="ownerID", type="bigint", options={"unsigned"=true})
19
     */
20
    private $ownerId;
21
22
    /**
23
     * @ORM\Column(name="characterID", type="bigint", options={"unsigned"=true})
24
     */
25
    private $characterId;
26
27
    /**
28
     * @ORM\Column(name="name", type="string")
29
     */
30
    private $name;
31
32
    /**
33
     * @ORM\Column(name="startDateTime", type="datetime")
34
     */
35
    private $startDateTime;
36
37
    /**
38
     * @ORM\Column(name="baseID", type="bigint", options={"unsigned"=true})
39
     */
40
    private $baseId;
41
42
    /**
43
     * @ORM\Column(name="base", type="string")
44
     */
45
    private $base;
46
47
    /**
48
     * @ORM\Column(name="title", type="text")
49
     */
50
    private $title;
51
52
    /**
53
     * @ORM\Column(name="logonDateTime", type="datetime")
54
     */
55
    private $logonDateTime;
56
57
    /**
58
     * @ORM\Column(name="logoffDateTime", type="datetime")
59
     */
60
    private $logoffDateTime;
61
62
    /**
63
     * @ORM\Column(name="locationID", type="bigint", options={"unsigned"=true})
64
     */
65
    private $locationId;
66
67
    /**
68
     * @ORM\Column(name="location", type="string")
69
     */
70
    private $location;
71
72
    /**
73
     * @ORM\Column(name="shipTypeID", type="bigint", options={"unsigned"=true})
74
     */
75
    private $shipTypeId;
76
77
    /**
78
     * @ORM\Column(name="shipType", type="string")
79
     */
80
    private $shipType;
81
82
    /**
83
     * @ORM\Column(name="roles", type="bigint", options={"unsigned"=true})
84
     */
85
    private $roles;
86
87
    /**
88
     * @ORM\Column(name="grantableRoles", type="bigint", options={"unsigned"=true})
89
     */
90
    private $grantableRoles;
91
92
    /**
93
     * Get id
94
     *
95
     * @return integer
96
     */
97
    public function getId()
98
    {
99
        return $this->id;
100
    }
101
102
    /**
103
     * Set ownerId
104
     *
105
     * @param integer $ownerId
106
     * @return CorpMemberTracking
107
     */
108
    public function setOwnerId($ownerId)
109
    {
110
        $this->ownerId = $ownerId;
111
112
        return $this;
113
    }
114
115
    /**
116
     * Get ownerId
117
     *
118
     * @return integer
119
     */
120
    public function getOwnerId()
121
    {
122
        return $this->ownerId;
123
    }
124
125
    /**
126
     * Set characterId
127
     *
128
     * @param integer $characterId
129
     * @return CorpMemberTracking
130
     */
131
    public function setCharacterId($characterId)
132
    {
133
        $this->characterId = $characterId;
134
135
        return $this;
136
    }
137
138
    /**
139
     * Get characterId
140
     *
141
     * @return integer
142
     */
143
    public function getCharacterId()
144
    {
145
        return $this->characterId;
146
    }
147
148
    /**
149
     * Set name
150
     *
151
     * @param string $name
152
     * @return CorpMemberTracking
153
     */
154
    public function setName($name)
155
    {
156
        $this->name = $name;
157
158
        return $this;
159
    }
160
161
    /**
162
     * Get name
163
     *
164
     * @return string
165
     */
166
    public function getName()
167
    {
168
        return $this->name;
169
    }
170
171
    /**
172
     * Set startDateTime
173
     *
174
     * @param \DateTime $startDateTime
175
     * @return CorpMemberTracking
176
     */
177
    public function setStartDateTime($startDateTime)
178
    {
179
        $this->startDateTime = $startDateTime;
180
181
        return $this;
182
    }
183
184
    /**
185
     * Get startDateTime
186
     *
187
     * @return \DateTime
188
     */
189
    public function getStartDateTime()
190
    {
191
        return $this->startDateTime;
192
    }
193
194
    /**
195
     * Set baseId
196
     *
197
     * @param integer $baseId
198
     * @return CorpMemberTracking
199
     */
200
    public function setBaseId($baseId)
201
    {
202
        $this->baseId = $baseId;
203
204
        return $this;
205
    }
206
207
    /**
208
     * Get baseId
209
     *
210
     * @return integer
211
     */
212
    public function getBaseId()
213
    {
214
        return $this->baseId;
215
    }
216
217
    /**
218
     * Set base
219
     *
220
     * @param string $base
221
     * @return CorpMemberTracking
222
     */
223
    public function setBase($base)
224
    {
225
        $this->base = $base;
226
227
        return $this;
228
    }
229
230
    /**
231
     * Get base
232
     *
233
     * @return string
234
     */
235
    public function getBase()
236
    {
237
        return $this->base;
238
    }
239
240
    /**
241
     * Set title
242
     *
243
     * @param string $title
244
     * @return CorpMemberTracking
245
     */
246
    public function setTitle($title)
247
    {
248
        $this->title = $title;
249
250
        return $this;
251
    }
252
253
    /**
254
     * Get title
255
     *
256
     * @return string
257
     */
258
    public function getTitle()
259
    {
260
        return $this->title;
261
    }
262
263
    /**
264
     * Set logonDateTime
265
     *
266
     * @param \DateTime $logonDateTime
267
     * @return CorpMemberTracking
268
     */
269
    public function setLogonDateTime($logonDateTime)
270
    {
271
        $this->logonDateTime = $logonDateTime;
272
273
        return $this;
274
    }
275
276
    /**
277
     * Get logonDateTime
278
     *
279
     * @return \DateTime
280
     */
281
    public function getLogonDateTime()
282
    {
283
        return $this->logonDateTime;
284
    }
285
286
    /**
287
     * Set logoffDateTime
288
     *
289
     * @param \DateTime $logoffDateTime
290
     * @return CorpMemberTracking
291
     */
292
    public function setLogoffDateTime($logoffDateTime)
293
    {
294
        $this->logoffDateTime = $logoffDateTime;
295
296
        return $this;
297
    }
298
299
    /**
300
     * Get logoffDateTime
301
     *
302
     * @return \DateTime
303
     */
304
    public function getLogoffDateTime()
305
    {
306
        return $this->logoffDateTime;
307
    }
308
309
    /**
310
     * Set locationId
311
     *
312
     * @param integer $locationId
313
     * @return CorpMemberTracking
314
     */
315
    public function setLocationId($locationId)
316
    {
317
        $this->locationId = $locationId;
318
319
        return $this;
320
    }
321
322
    /**
323
     * Get locationId
324
     *
325
     * @return integer
326
     */
327
    public function getLocationId()
328
    {
329
        return $this->locationId;
330
    }
331
332
    /**
333
     * Set location
334
     *
335
     * @param string $location
336
     * @return CorpMemberTracking
337
     */
338
    public function setLocation($location)
339
    {
340
        $this->location = $location;
341
342
        return $this;
343
    }
344
345
    /**
346
     * Get location
347
     *
348
     * @return string
349
     */
350
    public function getLocation()
351
    {
352
        return $this->location;
353
    }
354
355
    /**
356
     * Set shipTypeId
357
     *
358
     * @param integer $shipTypeId
359
     * @return CorpMemberTracking
360
     */
361
    public function setShipTypeId($shipTypeId)
362
    {
363
        $this->shipTypeId = $shipTypeId;
364
365
        return $this;
366
    }
367
368
    /**
369
     * Get shipTypeId
370
     *
371
     * @return integer
372
     */
373
    public function getShipTypeId()
374
    {
375
        return $this->shipTypeId;
376
    }
377
378
    /**
379
     * Set shipType
380
     *
381
     * @param string $shipType
382
     * @return CorpMemberTracking
383
     */
384
    public function setShipType($shipType)
385
    {
386
        $this->shipType = $shipType;
387
388
        return $this;
389
    }
390
391
    /**
392
     * Get shipType
393
     *
394
     * @return string
395
     */
396
    public function getShipType()
397
    {
398
        return $this->shipType;
399
    }
400
401
    /**
402
     * Set roles
403
     *
404
     * @param integer $roles
405
     * @return CorpMemberTracking
406
     */
407
    public function setRoles($roles)
408
    {
409
        $this->roles = $roles;
410
411
        return $this;
412
    }
413
414
    /**
415
     * Get roles
416
     *
417
     * @return integer
418
     */
419
    public function getRoles()
420
    {
421
        return $this->roles;
422
    }
423
424
    /**
425
     * Set grantableRoles
426
     *
427
     * @param integer $grantableRoles
428
     * @return CorpMemberTracking
429
     */
430
    public function setGrantableRoles($grantableRoles)
431
    {
432
        $this->grantableRoles = $grantableRoles;
433
434
        return $this;
435
    }
436
437
    /**
438
     * Get grantableRoles
439
     *
440
     * @return integer
441
     */
442
    public function getGrantableRoles()
443
    {
444
        return $this->grantableRoles;
445
    }
446
}
447