Uses of Interface
org.simpleframework.http.Part
-
Packages that use Part Package Description org.simpleframework.http org.simpleframework.http.core 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.core
Methods in org.simpleframework.http.core that return Part Modifier and Type Method Description Part
RequestEntity. 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.core that return types with arguments of type Part Modifier and Type Method Description java.util.List<Part>
RequestEntity. getParts()
This method is used to get allPart
objects that are associated with the request. -
Uses of Part in org.simpleframework.http.message
Classes in org.simpleframework.http.message that implement Part Modifier and Type Class Description (package private) class
BufferPart
TheBufferPart
is used to represent a part within a request message.Fields in org.simpleframework.http.message with type parameters of type Part Modifier and Type Field Description private java.util.List<Part>
PartData. list
This is the list of attachments for this part list object.private KeyMap<Part>
PartData. map
This is the key map that is used to store the part objects.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.Part
BufferBody. getPart(java.lang.String name)
This method is used to acquire aPart
from the HTTP request using a known name for the part.Part
ContentConsumer. getPart()
This is used to acquire the part for this HTTP entity.Part
PartData. getPart(java.lang.String name)
This method is used to acquire aPart
from the list using a known name for the part.Part
PartSeries. getPart(java.lang.String name)
This method is used to acquire aPart
from the list 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.java.util.List<Part>
BufferBody. getParts()
This method is used to get allPart
objects that are associated with the request.java.util.List<Part>
PartData. getParts()
This is used to acquire the attachments associated with this list.java.util.List<Part>
PartSeries. getParts()
This is used to acquire the attachments associated with this list.Methods in org.simpleframework.http.message with parameters of type Part Modifier and Type Method Description boolean
PartData. addPart(Part part)
This is used to add a part to the list.boolean
PartSeries. addPart(Part part)
This is used to add a part to the list.
-