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

com.sippnex.fileblade.entities.UploadResponse Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package com.sippnex.fileblade.entities;

public class UploadResponse {

    private Long id;

    private boolean success;

    private Long fileId;

    private String filePath;

    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public boolean isSuccess() {
        return success;
    }

    public void setSuccess(boolean success) {
        this.success = success;
    }

    public Long getFileId() {
        return fileId;
    }

    public void setFileId(Long fileId) {
        this.fileId = fileId;
    }

    public String getFilePath() {
        return filePath;
    }

    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }

    public UploadResponse(Long id, boolean success) {
        this.id = id;
        this.success = success;
    }

    public UploadResponse(Long id, boolean success, Long fileId, String filePath) {
        this.id = id;
        this.success = success;
        this.fileId = fileId;
        this.filePath = filePath;
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy