org.ar4k.agent.helper.RootFileSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ar4k-core Show documentation
Show all versions of ar4k-core Show documentation
Java Edge Agent Rossonet.
package org.ar4k.agent.helper;
import java.io.File;
import java.util.List;
public class RootFileSystem {
private List childs = null;
private long totalSpace = 0;
private long freeSpace = 0;
private File absoluteFile = null;
public void setAbsolutePath(File absoluteFile) {
this.absoluteFile = absoluteFile;
}
public void setFreeSpace(long freeSpace) {
this.freeSpace = freeSpace;
}
public void setTotalSpace(long totalSpace) {
this.totalSpace = totalSpace;
}
public void setChilds(List childs) {
this.childs = childs;
}
protected File getAbsoluteFile() {
return absoluteFile;
}
protected void setAbsoluteFile(File absoluteFile) {
this.absoluteFile = absoluteFile;
}
protected List getChilds() {
return childs;
}
protected long getTotalSpace() {
return totalSpace;
}
protected long getFreeSpace() {
return freeSpace;
}
}