Persoenliche Mediazentrale
ulrich
2021-04-10 5f7e0b47ee8d31a87bef7d6fa7268fc8ce839126
commit | author | age
86bbf7 1 /*
90d368 2   Mediazentrale - Personal Media Center
U 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/>.
86bbf7 17  */
U 18 package de.uhilger.mediaz.store;
19
20 /**
21  *
22  * @author ulrich
23  */
24 public class StorageFile {
822ddf 25   
U 26   public static final String TYP_FOLDER = "folder";
27   public static final String TYP_FILE = "file";
7c22a2 28   public static final String TYP_AUDIO = "audio";
U 29   public static final String TYP_VIDEO = "video";
90d368 30   public static final String TYP_KATALOG = "katalog";
822ddf 31   
86bbf7 32   private String name;
U 33   private String typ;
37eadf 34   private String interpret = "";
U 35   private String titelAnzName = "";
36   private String album  = "";
86bbf7 37
U 38   public String getName() {
39     return name;
40   }
41
42   public void setName(String name) {
43     this.name = name;
44   }
45
46   public String getTyp() {
47     return typ;
48   }
49
50   public void setTyp(String typ) {
51     this.typ = typ;
52   }
37eadf 53
U 54   public String getInterpret() {
55     return interpret;
56   }
57
58   public void setInterpret(String ip) {
59     if(ip != null) {
60       this.interpret = ip;
61     }
62   }
63
64   public String getTitelAnzName() {
65     return titelAnzName;
66   }
67
68   public void setTitelAnzName(String tan) {
69     if(tan != null) {
b56bb3 70       this.titelAnzName = tan;
37eadf 71     }
U 72   }
73
74   public String getAlbum() {
75     return album;
76   }
77
78   public void setAlbum(String a) {
79     if(a != null) {
80       this.album = a;
81     }
82   }
83
86bbf7 84   
U 85 }