Persoenliche Mediazentrale
ulrich
2021-04-06 822ddf5649666248df1c7436d237e50fd79646dc
commit | author | age
86bbf7 1 /*
U 2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 package de.uhilger.mediaz.store;
7
8 /**
9  *
10  * @author ulrich
11  */
12 public class StorageFile {
822ddf 13   
U 14   public static final String TYP_FOLDER = "folder";
15   public static final String TYP_FILE = "file";
16   
86bbf7 17   private String name;
U 18   private String typ;
19
20   public String getName() {
21     return name;
22   }
23
24   public void setName(String name) {
25     this.name = name;
26   }
27
28   public String getTyp() {
29     return typ;
30   }
31
32   public void setTyp(String typ) {
33     this.typ = typ;
34   }
35   
36 }