Persoenliche Mediazentrale
ulrich
2021-04-08 2bdd78edafb3a653177a67776daadb24edfef7fe
commit | author | age
dfb7d3 1 /*
U 2   Mediazentrale - Personal Media Center
3   Copyright (C) 2021  Ulrich Hilger
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  */
18 package de.uhilger.mediaz.entity;
19
20 /**
21  *
22  * @author ulrich
23  */
24 public class Titel {
25   private String katalogUrl;
2bdd78 26   private String pfad;
dfb7d3 27   private String name;
U 28
29   public String getKatalogUrl() {
30     return katalogUrl;
31   }
32
33   public void setKatalogUrl(String katalogUrl) {
34     this.katalogUrl = katalogUrl;
35   }
36
37   public String getName() {
38     return name;
39   }
40
41   public void setName(String titel) {
42     this.name = titel;
43   }
2bdd78 44
U 45   public String getPfad() {
46     return pfad;
47   }
48
49   public void setPfad(String pfad) {
50     this.pfad = pfad;
51   }
dfb7d3 52   
U 53 }