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 PartHttpServletRequest. getPart(String name)Gets thePartwith the given name.PartHttpServletRequestWrapper. 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 thePartcomponents 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.
-