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

org.webswing.model.c2s.UploadEventMsgIn Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.model.c2s;

import org.webswing.model.MsgIn;

public class UploadEventMsgIn implements MsgIn {

	private static final long serialVersionUID = -7188733550212761231L;

	private String fileName;
	private String tempFileLocation;

	public String getFileName() {
		return fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}

	public String getTempFileLocation() {
		return tempFileLocation;
	}

	public void setTempFileLocation(String tempFileLocation) {
		this.tempFileLocation = tempFileLocation;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy