com.github.timabilov.irequest.utils.FileDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irequest Show documentation
Show all versions of irequest Show documentation
Thinnest and painless HTTP Client (based on HttpURLConnection) provides you - wraps all functionality in soft manner with fluent-like interface.
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