Persoenliche Mediazentrale
ulrich
2021-04-07 f45e203a66a5471a0dd05e0362566ef96a2b6b31
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;
34
35   public String getName() {
36     return name;
37   }
38
39   public void setName(String name) {
40     this.name = name;
41   }
42
43   public String getTyp() {
44     return typ;
45   }
46
47   public void setTyp(String typ) {
48     this.typ = typ;
49   }
50   
51 }