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"; |
7c22a2
|
16 |
public static final String TYP_AUDIO = "audio"; |
U |
17 |
public static final String TYP_VIDEO = "video"; |
822ddf
|
18 |
|
86bbf7
|
19 |
private String name; |
U |
20 |
private String typ; |
|
21 |
|
|
22 |
public String getName() { |
|
23 |
return name; |
|
24 |
} |
|
25 |
|
|
26 |
public void setName(String name) { |
|
27 |
this.name = name; |
|
28 |
} |
|
29 |
|
|
30 |
public String getTyp() { |
|
31 |
return typ; |
|
32 |
} |
|
33 |
|
|
34 |
public void setTyp(String typ) { |
|
35 |
this.typ = typ; |
|
36 |
} |
|
37 |
|
|
38 |
} |