Uses of Interface
javax.servlet.http.Part
-
Packages that use Part Package Description javax.servlet.http -
-
Uses of Part in javax.servlet.http
Methods in javax.servlet.http that return Part Modifier and Type Method Description default Part
HttpServletRequest. getPart(String name)
Gets thePart
with the given name.Part
HttpServletRequestWrapper. getPart(String name)
The default behavior of this method is to call getPart on the wrapped request object.Methods in javax.servlet.http that return types with arguments of type Part Modifier and Type Method Description default Collection<Part>
HttpServletRequest. getParts()
Gets all thePart
components of this request, provided that it is of typemultipart/form-data
.Collection<Part>
HttpServletRequestWrapper. getParts()
The default behavior of this method is to call getParts on the wrapped request object.
-