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

com.untzuntz.ustackserverapi.util.UploadedFile Maven / Gradle / Ivy

There is a newer version: 2.1.115
Show newest version
package com.untzuntz.ustackserverapi.util;

import java.io.File;

public class UploadedFile {

	private File file;
	private String fileName;
	private String contentType;
	
	public UploadedFile(File file, String fileName, String contentType)
	{
		this.file = file;
		this.fileName = fileName;
		this.contentType = contentType;
	}

	public File getFile() {
		return file;
	}

	public String getFileName() {
		return fileName;
	}

	public String getContentType() {
		return contentType;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy