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

com.github.timabilov.irequest.utils.FileDTO Maven / Gradle / Ivy

Go to download

Thinnest and painless HTTP Client (based on HttpURLConnection) provides you - wraps all functionality in soft manner with fluent-like interface.

There is a newer version: 1.0.3
Show newest version
package com.github.timabilov.irequest.utils;


public class FileDTO {

    String name;
    byte[] body;

    public FileDTO(String name, byte[] body) {
        this.name = name;
        this.body = body;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public byte[] getBody() {
        return body;
    }

    public void setBody(byte[] body) {
        this.body = body;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy