com.roubsite.RoubSiteFS.utils.bean.FileInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RoubSiteFS Show documentation
Show all versions of RoubSiteFS Show documentation
A lightweight fragmented storage service
The newest version!
package com.roubsite.RoubSiteFS.utils.bean;
public class FileInfo {
private String fileName;
private byte[] data;
public byte[] getData() {
return data;
}
public void setData(byte[] data) {
this.data = data;
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy