commit | author | age
|
e639c2
|
1 |
/* |
U |
2 |
WebBox - Dein Server. |
|
3 |
Copyright (C) 2017, 2018 Ulrich Hilger, http://uhilger.de |
|
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 <http://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
|
|
19 |
package de.uhilger.filecms.data; |
|
20 |
|
|
21 |
/** |
|
22 |
* Inhalt |
|
23 |
* @author ulrich |
|
24 |
*/ |
|
25 |
public class Inhalt { |
|
26 |
private String base; |
|
27 |
private String url; |
|
28 |
private String abst; |
|
29 |
private Long lastModified; |
|
30 |
private Long length; |
|
31 |
private String mimetype; |
|
32 |
private Boolean isDirectory; |
|
33 |
private Boolean isHidden; |
|
34 |
|
|
35 |
public String getBase() { |
|
36 |
return base; |
|
37 |
} |
|
38 |
|
|
39 |
public void setBase(String base) { |
|
40 |
this.base = base; |
|
41 |
} |
|
42 |
|
|
43 |
|
|
44 |
public String getUrl() { |
|
45 |
return url; |
|
46 |
} |
|
47 |
|
|
48 |
public void setUrl(String url) { |
|
49 |
this.url = url; |
|
50 |
} |
|
51 |
|
|
52 |
public String getAbst() { |
|
53 |
return abst; |
|
54 |
} |
|
55 |
|
|
56 |
public void setAbst(String abst) { |
|
57 |
this.abst = abst; |
|
58 |
} |
|
59 |
|
|
60 |
public Long getLastModified() { |
|
61 |
return lastModified; |
|
62 |
} |
|
63 |
|
|
64 |
public void setLastModified(Long lastModified) { |
|
65 |
this.lastModified = lastModified; |
|
66 |
} |
|
67 |
|
|
68 |
public Long getLength() { |
|
69 |
return length; |
|
70 |
} |
|
71 |
|
|
72 |
public void setLength(Long length) { |
|
73 |
this.length = length; |
|
74 |
} |
|
75 |
|
|
76 |
public String getMimetype() { |
|
77 |
return mimetype; |
|
78 |
} |
|
79 |
|
|
80 |
public void setMimetype(String mimetype) { |
|
81 |
this.mimetype = mimetype; |
|
82 |
} |
|
83 |
|
|
84 |
public Boolean getIsDirectory() { |
|
85 |
return isDirectory; |
|
86 |
} |
|
87 |
|
|
88 |
public void setIsDirectory(Boolean isDirectory) { |
|
89 |
this.isDirectory = isDirectory; |
|
90 |
} |
|
91 |
|
|
92 |
public Boolean getIsHidden() { |
|
93 |
return isHidden; |
|
94 |
} |
|
95 |
|
|
96 |
public void setIsHidden(Boolean isHidden) { |
|
97 |
this.isHidden = isHidden; |
|
98 |
} |
|
99 |
|
|
100 |
|
|
101 |
|
|
102 |
} |