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

com.rt.core.beans.UrlFile Maven / Gradle / Ivy

The newest version!
package com.rt.core.beans;

public class UrlFile {

	private String url;
	private byte[] byteFile;
	private String filename;

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	public byte[] getByteFile() {
		return byteFile;
	}

	public void setByteFile(byte[] byteFile) {
		this.byteFile = byteFile;
	}

	public String getFilename() {
		return filename;
	}

	public void setFilename(String filename) {
		this.filename = filename;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy