Uses of Class
com.fasterxml.jackson.core.util.RequestPayload
Packages that use RequestPayload
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Package for some of
JsonProcessingException
subtypes contained by streaming API.-
Uses of RequestPayload in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as RequestPayloadModifier and TypeFieldDescriptionprotected RequestPayloadJsonParser._requestPayloadOptional container that holds the request payload which will be displayed on JSON parsing error.Methods in com.fasterxml.jackson.core that return RequestPayloadMethods in com.fasterxml.jackson.core with parameters of type RequestPayloadModifier and TypeMethodDescriptionvoidJsonParser.setRequestPayloadOnError(RequestPayload payload) Sets the payload to be passed ifJsonParseExceptionis thrown.JsonParseException.withRequestPayload(RequestPayload payload) Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes. -
Uses of RequestPayload in com.fasterxml.jackson.core.exc
Fields in com.fasterxml.jackson.core.exc declared as RequestPayloadModifier and TypeFieldDescriptionprotected RequestPayloadStreamReadException._requestPayloadOptional payload that can be assigned to pass along for error reporting or handling purposes.Methods in com.fasterxml.jackson.core.exc that return RequestPayloadModifier and TypeMethodDescriptionStreamReadException.getRequestPayload()Method that may be called to find payload that was being parsed, if one was specified for parser that threw this Exception.Methods in com.fasterxml.jackson.core.exc with parameters of type RequestPayloadModifier and TypeMethodDescriptionInputCoercionException.withRequestPayload(RequestPayload p) abstract StreamReadExceptionStreamReadException.withRequestPayload(RequestPayload payload) Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes.