br.com.anteros.cloud.integration.filesharing.CloudResultInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Cloud-Integration Show documentation
Show all versions of Anteros-Cloud-Integration Show documentation
Anteros Cloud Integration for Java.
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