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

com.javajy.api.entity.UploadedFile Maven / Gradle / Ivy

The newest version!
package com.javajy.api.entity;

public class UploadedFile {
    protected String fileName;
    protected String fileUrl;
    protected Response response;

    public UploadedFile() {
    }

    public String getFileName() {
        return this.fileName;
    }

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

    public String getFileUrl() {
        if (this.response.getData() != null && this.fileUrl == null) {
            this.fileUrl = this.response.getData();
        }

        return this.fileUrl;
    }

    public void setFileUrl(String var1) {
        this.fileUrl = var1;
    }

    public Response getResponse() {
        return this.response;
    }

    public void setResponse(Response var1) {
        this.response = var1;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy