com.king.platform.net.http.BuiltMultiPart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of king-http-client Show documentation
Show all versions of king-http-client Show documentation
A asyncronous http client built ontop of netty.
package com.king.platform.net.http;
import com.king.platform.net.http.netty.request.multipart.MultiPartEntry;
import java.util.List;
public class BuiltMultiPart {
private final List parts;
private final byte[] boundary;
public BuiltMultiPart(List parts, byte[] boundary) {
this.parts = parts;
this.boundary = boundary;
}
public List getParts() {
return parts;
}
public byte[] getBoundary() {
return boundary;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy