Uses of Interface
org.apache.juneau.httppart.HttpPartParser
Packages that use HttpPartParser
Package
Description
REST Server API
REST Annotations
REST Client API
REST Server Mock API
-
Uses of HttpPartParser in org.apache.juneau.http.annotation
Method parameters in org.apache.juneau.http.annotation with type arguments of type HttpPartParserModifier and TypeMethodDescriptionFormDataAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets theFormData.parser()
property on this annotation.HeaderAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets theHeader.parser()
property on this annotation.PathAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets thePath.parser()
property on this annotation.QueryAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets theQuery.parser()
property on this annotation.RequestAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets theRequest.parser()
property on this annotation.ResponseAnnotation.Builder.parser
(Class<? extends HttpPartParser> value) Sets theResponse.parser()
property on this annotation. -
Uses of HttpPartParser in org.apache.juneau.httppart
Subinterfaces of HttpPartParser in org.apache.juneau.httppartModifier and TypeInterfaceDescriptionstatic interface
Represent "no" part parser.Classes in org.apache.juneau.httppart that implement HttpPartParserModifier and TypeClassDescriptionclass
Base class for implementations ofHttpPartParser
class
An implementation ofHttpPartParser
that takes in the strings and tries to convert them to POJOs using constructors and static create methods.Methods in org.apache.juneau.httppart that return types with arguments of type HttpPartParserModifier and TypeMethodDescriptionClass<? extends HttpPartParser>
HttpPartSchema.getParser()
Returns theparser field of this schema.Method parameters in org.apache.juneau.httppart with type arguments of type HttpPartParserModifier and TypeMethodDescriptionHttpPartSchema.Builder.parser
(Class<? extends HttpPartParser> value) Identifies the part parser to use for parsing this part.HttpPartParser.Creator.type
(Class<? extends HttpPartParser> value) -
Uses of HttpPartParser in org.apache.juneau.httppart.bean
Methods in org.apache.juneau.httppart.bean that return types with arguments of type HttpPartParserModifier and TypeMethodDescriptionResponseBeanPropertyMeta.getParser()
Returns the parser to use for parsing the bean property value. -
Uses of HttpPartParser in org.apache.juneau.oapi
Classes in org.apache.juneau.oapi that implement HttpPartParser -
Uses of HttpPartParser in org.apache.juneau.rest
Methods in org.apache.juneau.rest that return HttpPartParserModifier and TypeMethodDescriptionRestContext.getPartParser()
Returns the HTTP-part parser associated with this resource.RestOpContext.getPartParser()
Bean property getter:partParser .Methods in org.apache.juneau.rest with parameters of type HttpPartParserModifier and TypeMethodDescriptionRestContext.Builder.partParser
(HttpPartParser value) Specifies the part parser to use for parsing HTTP parts for this class.RestOpContext.Builder.partParser
(HttpPartParser value) Specifies the part parser to use for parsing HTTP parts for this operation.Method parameters in org.apache.juneau.rest with type arguments of type HttpPartParserModifier and TypeMethodDescriptionRestContext.Builder.partParser
(Class<? extends HttpPartParser> value) Specifies the part parser to use for parsing HTTP parts for this class.RestOpContext.Builder.partParser
(Class<? extends HttpPartParser> value) Specifies the part parser to use for parsing HTTP parts for this operation. -
Uses of HttpPartParser in org.apache.juneau.rest.annotation
Method parameters in org.apache.juneau.rest.annotation with type arguments of type HttpPartParserModifier and TypeMethodDescriptionRestAnnotation.Builder.partParser
(Class<? extends HttpPartParser> value) Sets theRest.partParser()
property on this annotation. -
Uses of HttpPartParser in org.apache.juneau.rest.client
Methods in org.apache.juneau.rest.client that return HttpPartParserModifier and TypeMethodDescriptionprotected HttpPartParser
RestClient.getPartParser()
Returns the part parser associated with this client.protected HttpPartParser
RestClient.getPartParser
(Class<? extends HttpPartParser> c) Returns the part parser instance of the specified type.Methods in org.apache.juneau.rest.client with parameters of type HttpPartParserModifier and TypeMethodDescriptionprotected HttpPartParserSession
RestResponse.getPartParserSession
(HttpPartParser parser) Creates a session of the specified part parser.RestClient.Builder.partParser
(HttpPartParser value) Part parser.Method parameters in org.apache.juneau.rest.client with type arguments of type HttpPartParserModifier and TypeMethodDescriptionprotected HttpPartParser
RestClient.getPartParser
(Class<? extends HttpPartParser> c) Returns the part parser instance of the specified type.RestClient.Builder.partParser
(Class<? extends HttpPartParser> value) Part parser. -
Uses of HttpPartParser in org.apache.juneau.rest.mock
Methods in org.apache.juneau.rest.mock with parameters of type HttpPartParserMethod parameters in org.apache.juneau.rest.mock with type arguments of type HttpPartParserModifier and TypeMethodDescriptionMockRestClient.Builder.partParser
(Class<? extends HttpPartParser> value) -
Uses of HttpPartParser in org.apache.juneau.uon
Classes in org.apache.juneau.uon that implement HttpPartParserModifier and TypeClassDescriptionclass
Parses UON (a notation for URL-encoded query parameter values) text into POJO models.static class
Default parser, decoding. -
Uses of HttpPartParser in org.apache.juneau.urlencoding
Classes in org.apache.juneau.urlencoding that implement HttpPartParserModifier and TypeClassDescriptionclass
Parses URL-encoded text into POJO models.