commit | author | age
|
dfb7d3
|
1 |
/* |
94b1c2
|
2 |
Tango - Personal Media Center |
dfb7d3
|
3 |
Copyright (C) 2021 Ulrich Hilger |
U |
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU Affero General Public License as |
|
7 |
published by the Free Software Foundation, either version 3 of the |
|
8 |
License, or (at your option) any later version. |
|
9 |
|
|
10 |
This program is distributed in the hope that it will be useful, |
|
11 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
GNU Affero General Public License for more details. |
|
14 |
|
|
15 |
You should have received a copy of the GNU Affero General Public License |
|
16 |
along with this program. If not, see <https://www.gnu.org/licenses/>. |
|
17 |
*/ |
94b1c2
|
18 |
package de.uhilger.tango.entity; |
dfb7d3
|
19 |
|
U |
20 |
/** |
|
21 |
* |
|
22 |
* @author ulrich |
|
23 |
*/ |
|
24 |
public class Titel { |
|
25 |
private String katalogUrl; |
2bdd78
|
26 |
private String pfad; |
dfb7d3
|
27 |
private String name; |
245ac1
|
28 |
private String interpret = ""; |
U |
29 |
private String titelAnzName = ""; |
|
30 |
private String album = ""; |
dfb7d3
|
31 |
|
U |
32 |
public String getKatalogUrl() { |
|
33 |
return katalogUrl; |
|
34 |
} |
|
35 |
|
|
36 |
public void setKatalogUrl(String katalogUrl) { |
|
37 |
this.katalogUrl = katalogUrl; |
|
38 |
} |
|
39 |
|
|
40 |
public String getName() { |
|
41 |
return name; |
|
42 |
} |
|
43 |
|
|
44 |
public void setName(String titel) { |
|
45 |
this.name = titel; |
|
46 |
} |
2bdd78
|
47 |
|
U |
48 |
public String getPfad() { |
|
49 |
return pfad; |
|
50 |
} |
|
51 |
|
|
52 |
public void setPfad(String pfad) { |
|
53 |
this.pfad = pfad; |
|
54 |
} |
37eadf
|
55 |
|
245ac1
|
56 |
public String getInterpret() { |
U |
57 |
return interpret; |
37eadf
|
58 |
} |
U |
59 |
|
245ac1
|
60 |
public void setInterpret(String interpret) { |
U |
61 |
this.interpret = interpret; |
|
62 |
} |
|
63 |
|
|
64 |
public String getTitelAnzName() { |
|
65 |
return titelAnzName; |
|
66 |
} |
|
67 |
|
|
68 |
public void setTitelAnzName(String titelAnzName) { |
|
69 |
this.titelAnzName = titelAnzName; |
|
70 |
} |
|
71 |
|
|
72 |
public String getAlbum() { |
|
73 |
return album; |
|
74 |
} |
|
75 |
|
|
76 |
public void setAlbum(String album) { |
|
77 |
this.album = album; |
37eadf
|
78 |
} |
dfb7d3
|
79 |
|
U |
80 |
} |