Package org.jboss.resteasy.spi.multipart
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.
@FunctionalInterface public interface MultipartContent
Represents the entity parts ofmultipart/form-datacontent.- Author:
- James R. Perkins
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Optional<jakarta.ws.rs.core.EntityPart>entityPart(String name)Returns the optional entity part for amultipart/form-datarequest.List<jakarta.ws.rs.core.EntityPart>entityParts()Returns the entity parts for multipart/form-data types.
-
-
-
Method Detail
-
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.
-
-