Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
4.3.3
-
None
Description
The MultipartEntityBuilder does not allow to set the subType and the generated Content-Type.
Part1:
public MultipartEntityBuilderFixed setType(final String subType)
{ this.subType = subType; return this; }Part2:
private String generateContentType(final String boundary, final Charset charset)
{ ... buffer.append("multipart/" + this.subType + "; boundary="); ... }