Uses of Interface
org.simpleframework.http.Part
-
Packages that use Part Package Description org.simpleframework.http org.simpleframework.http.message -
-
Uses of Part in org.simpleframework.http
Methods in org.simpleframework.http that return Part Modifier and Type Method Description Part
Request. getPart(java.lang.String name)
This method is used to acquire aPart
from the HTTP request using a known name for the part.Part
RequestWrapper. getPart(java.lang.String name)
This method is used to acquire aPart
from the HTTP request using a known name for the part.Methods in org.simpleframework.http that return types with arguments of type Part Modifier and Type Method Description java.util.List<Part>
Request. getParts()
This method is used to get allPart
objects that are associated with the request.java.util.List<Part>
RequestWrapper. getParts()
This method is used to get allPart
objects that are associated with the request. -
Uses of Part in org.simpleframework.http.message
Methods in org.simpleframework.http.message that return Part Modifier and Type Method Description Part
Body. getPart(java.lang.String name)
This method is used to acquire aPart
from the HTTP request using a known name for the part.Methods in org.simpleframework.http.message that return types with arguments of type Part Modifier and Type Method Description java.util.List<Part>
Body. getParts()
This method is used to get allPart
objects that are associated with the request.
-