Interface MultipartContent
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents the entity parts of
multipart/form-data
content.- Author:
- James R. Perkins
-
Method Summary
Modifier and TypeMethodDescriptiondefault Optional
<jakarta.ws.rs.core.EntityPart> entityPart
(String name) Returns the optional entity part for amultipart/form-data
request.List
<jakarta.ws.rs.core.EntityPart> Returns the entity parts for multipart/form-data types.
-
Method Details
-
entityParts
List<jakarta.ws.rs.core.EntityPart> entityParts()Returns the entity parts for multipart/form-data types.- Returns:
- the entity parts or an empty list.
-
entityPart
-