All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yuweix.kuafu.http.request.FileWrapper Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.http.request;


/**
 * @author yuwei
 */
public class FileWrapper {
	private byte[] content;
	/**
	 * 文件名。
	 * 如Koala.jpg
	 */
	private String fileName;


	public byte[] getContent() {
		return content;
	}
	public void setContent(byte[] content) {
		this.content = content;
	}
	public String getFileName() {
		return fileName;
	}
	public void setFileName(String fileName) {
		this.fileName = fileName;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy