This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected ResponseEntity<Resource<List<Attachment>>> patchMultipartApiV1_Treatments_TID(final String aTID, | |
final Treatment aTreatment, | |
final boolean keepLock, | |
final MultipartFile... aMultipartFiles) throws IOException { | |
final MultiValueMap<String, Object> theMultipartRequest = new LinkedMultiValueMap<>(); | |
// creating an HttpEntity for the JSON part: | |
final HttpHeaders theJsonHeader = new HttpHeaders(); | |
theJsonHeader.setContentType(MediaType.APPLICATION_JSON); |