Passed
Pull Request — master (#195)
by
unknown
08:51
created

DepositLicenseLog::setUrn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
namespace EWW\Dpf\Domain\Model;
3
4
/*
5
 * This file is part of the TYPO3 CMS project.
6
 *
7
 * It is free software; you can redistribute it and/or modify it under
8
 * the terms of the GNU General Public License, either version 2
9
 * of the License, or any later version.
10
 *
11
 * For the full copyright and license information, please read the
12
 * LICENSE.txt file that was distributed with this source code.
13
 *
14
 * The TYPO3 project - inspiring people to share!
15
 */
16
17
/**
18
 * Document
19
 */
20
class DepositLicenseLog extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
21
{
22
    /**
23
     * @var string
24
     */
25
    protected $username = '';
26
27
    /**
28
     * @var string
29
     */
30
    protected $licenceUri = '';
31
32
    /**
33
     * @var string
34
     */
35
    protected $title = '';
36
37
    /**
38
     * @var string
39
     */
40
    protected $objectIdentifier = '';
41
42
    /**
43
     * @var string
44
     */
45
    protected $processNumber = '';
46
47
    /**
48
     * @var string
49
     */
50
    protected $urn = '';
51
52
    /**
53
     * @var string
54
     */
55
    protected $fileNames = '';
56
57
    /**
58
     * @return string
59
     */
60
    public function getUsername(): string
61
    {
62
        return $this->username;
63
    }
64
65
    /**
66
     * @param string $username
67
     */
68
    public function setUsername(string $username): void
69
    {
70
        $this->username = $username;
71
    }
72
73
    /**
74
     * @return string
75
     */
76
    public function getLicenceUri(): string
77
    {
78
        return $this->licenceUri;
79
    }
80
81
    /**
82
     * @param string $licenceUri
83
     */
84
    public function setLicenceUri(string $licenceUri): void
85
    {
86
        $this->licenceUri = $licenceUri;
87
    }
88
89
    /**
90
     * @return string
91
     */
92
    public function getTitle(): string
93
    {
94
        return $this->title;
95
    }
96
97
    /**
98
     * @param string $title
99
     */
100
    public function setTitle(string $title): void
101
    {
102
        $this->title = $title;
103
    }
104
105
    /**
106
     * @return string
107
     */
108
    public function getObjectIdentifier(): string
109
    {
110
        return $this->objectIdentifier;
111
    }
112
113
    /**
114
     * @param string $objectIdentifier
115
     */
116
    public function setObjectIdentifier($objectIdentifier): void
117
    {
118
        $this->objectIdentifier = $objectIdentifier;
119
    }
120
121
    /**
122
     * @return string
123
     */
124
    public function getProcessNumber(): string
125
    {
126
        return $this->processNumber;
127
    }
128
129
    /**
130
     * @param string $processNumber
131
     */
132
    public function setProcessNumber(string $processNumber): void
133
    {
134
        $this->processNumber = $processNumber;
135
    }
136
137
    /**
138
     * @return string
139
     */
140
    public function getUrn(): string
141
    {
142
        return $this->urn;
143
    }
144
145
    /**
146
     * @param string $urn
147
     */
148
    public function setUrn(string $urn): void
149
    {
150
        $this->urn = $urn;
151
    }
152
153
    /**
154
     * @return string
155
     */
156
    public function getFileNames(): string
157
    {
158
        return $this->fileNames;
159
    }
160
161
    /**
162
     * @param string $fileNames
163
     */
164
    public function setFileNames(string $fileNames): void
165
    {
166
        $this->fileNames = $fileNames;
167
    }
168
}
169