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 PartRequest. getPart(java.lang.String name)This method is used to acquire aPartfrom the HTTP request using a known name for the part.PartRequestWrapper. getPart(java.lang.String name)This method is used to acquire aPartfrom 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 allPartobjects that are associated with the request.java.util.List<Part>RequestWrapper. getParts()This method is used to get allPartobjects 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 PartRequestEntity. getPart(java.lang.String name)This method is used to acquire aPartfrom 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 allPartobjects 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) classBufferPartTheBufferPartis 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. listThis is the list of attachments for this part list object.private KeyMap<Part>PartData. mapThis 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 PartBody. getPart(java.lang.String name)This method is used to acquire aPartfrom the HTTP request using a known name for the part.PartBufferBody. getPart(java.lang.String name)This method is used to acquire aPartfrom the HTTP request using a known name for the part.PartContentConsumer. getPart()This is used to acquire the part for this HTTP entity.PartPartData. getPart(java.lang.String name)This method is used to acquire aPartfrom the list using a known name for the part.PartPartSeries. getPart(java.lang.String name)This method is used to acquire aPartfrom 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 allPartobjects that are associated with the request.java.util.List<Part>BufferBody. getParts()This method is used to get allPartobjects 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 booleanPartData. addPart(Part part)This is used to add a part to the list.booleanPartSeries. addPart(Part part)This is used to add a part to the list.
-