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

br.com.anteros.cloud.integration.filesharing.CloudResultInfo Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
package br.com.anteros.cloud.integration.filesharing;

public class CloudResultInfo {

	String sharedLink;
	Long fileSize;
	String fileName;
	
	private CloudResultInfo(String url, Long fileSize, String fileName) {
		this.sharedLink = url;
		this.fileSize = fileSize;
		this.fileName = fileName;
	}
	
	public CloudResultInfo() {
	}

	public String getSharedLink() {
		return sharedLink;
	}
	public void setSharedLink(String sharedLink) {
		this.sharedLink = sharedLink;
	}
	public Long getFileSize() {
		return fileSize;
	}
	public void setFileSize(Long fileSize) {
		this.fileSize = fileSize;
	}
	public static CloudResultInfo of(String url, Long fileSize, String fileName) {
		return new CloudResultInfo(url, fileSize, fileName);
	}

	public String getFileName() {
		return fileName;
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy