Uses of Interface
jakarta.ws.rs.core.EntityPart
-
Packages that use EntityPart Package Description jakarta.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources.org.jboss.resteasy.plugins.providers.multipart org.jboss.resteasy.plugins.server.servlet org.jboss.resteasy.spi org.jboss.resteasy.util -
-
Uses of EntityPart in jakarta.ws.rs.core
Methods in jakarta.ws.rs.core that return EntityPart Modifier and Type Method Description EntityPartEntityPart.Builder. build()Builds a new EntityPart instance using the provided property values. -
Uses of EntityPart in org.jboss.resteasy.plugins.providers.multipart
Methods in org.jboss.resteasy.plugins.providers.multipart that return EntityPart Modifier and Type Method Description EntityPartResteasyEntityPartBuilder. build()Methods in org.jboss.resteasy.plugins.providers.multipart that return types with arguments of type EntityPart Modifier and Type Method Description List<EntityPart>MultipartEntityPartReader. readFrom(Class<List<EntityPart>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)Method parameters in org.jboss.resteasy.plugins.providers.multipart with type arguments of type EntityPart Modifier and Type Method Description CompletionStage<Void>MultipartEntityPartWriter. asyncWriteTo(List<EntityPart> entityParts, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, AsyncOutputStream entityStream)List<EntityPart>MultipartEntityPartReader. readFrom(Class<List<EntityPart>> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,String> httpHeaders, InputStream entityStream)voidMultipartEntityPartWriter. writeTo(List<EntityPart> entityParts, Class<?> type, Type genericType, Annotation[] annotations, MediaType mediaType, MultivaluedMap<String,Object> httpHeaders, OutputStream entityStream) -
Uses of EntityPart in org.jboss.resteasy.plugins.server.servlet
Methods in org.jboss.resteasy.plugins.server.servlet that return types with arguments of type EntityPart Modifier and Type Method Description List<EntityPart>HttpServletInputMessage. getFormEntityParts() -
Uses of EntityPart in org.jboss.resteasy.spi
Methods in org.jboss.resteasy.spi that return types with arguments of type EntityPart Modifier and Type Method Description default Optional<EntityPart>HttpRequest. getFormEntityPart(String name)Returns the optional entity part for amultipart/form-datarequest.default List<EntityPart>HttpRequest. getFormEntityParts()Returns for entity parts for amultipart/form-datarequest. -
Uses of EntityPart in org.jboss.resteasy.util
Methods in org.jboss.resteasy.util that return types with arguments of type EntityPart Modifier and Type Method Description Optional<EntityPart>DelegatingHttpRequest. getFormEntityPart(String name)List<EntityPart>DelegatingHttpRequest. getFormEntityParts()
-