/*
|
WebBox - Dein Server.
|
Copyright (C) 2017, 2018 Ulrich Hilger, http://uhilger.de
|
|
This program is free software: you can redistribute it and/or modify
|
it under the terms of the GNU Affero General Public License as
|
published by the Free Software Foundation, either version 3 of the
|
License, or (at your option) any later version.
|
|
This program is distributed in the hope that it will be useful,
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
GNU Affero General Public License for more details.
|
|
You should have received a copy of the GNU Affero General Public License
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
*/
|
|
package de.uhilger.filecms.data;
|
|
/**
|
* Inhalt
|
* @author ulrich
|
*/
|
public class Inhalt {
|
private String base;
|
private String url;
|
private String abst;
|
private Long lastModified;
|
private Long length;
|
private String mimetype;
|
private Boolean isDirectory;
|
private Boolean isHidden;
|
|
public String getBase() {
|
return base;
|
}
|
|
public void setBase(String base) {
|
this.base = base;
|
}
|
|
|
public String getUrl() {
|
return url;
|
}
|
|
public void setUrl(String url) {
|
this.url = url;
|
}
|
|
public String getAbst() {
|
return abst;
|
}
|
|
public void setAbst(String abst) {
|
this.abst = abst;
|
}
|
|
public Long getLastModified() {
|
return lastModified;
|
}
|
|
public void setLastModified(Long lastModified) {
|
this.lastModified = lastModified;
|
}
|
|
public Long getLength() {
|
return length;
|
}
|
|
public void setLength(Long length) {
|
this.length = length;
|
}
|
|
public String getMimetype() {
|
return mimetype;
|
}
|
|
public void setMimetype(String mimetype) {
|
this.mimetype = mimetype;
|
}
|
|
public Boolean getIsDirectory() {
|
return isDirectory;
|
}
|
|
public void setIsDirectory(Boolean isDirectory) {
|
this.isDirectory = isDirectory;
|
}
|
|
public Boolean getIsHidden() {
|
return isHidden;
|
}
|
|
public void setIsHidden(Boolean isHidden) {
|
this.isHidden = isHidden;
|
}
|
|
|
|
}
|