Uses of Class
com.fasterxml.jackson.core.util.RequestPayload
-
Packages that use RequestPayload Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactory
used for constructing JSON parser (JsonParser
) and generator (JsonGenerator
) instances. -
-
Uses of RequestPayload in com.fasterxml.jackson.core
Fields in com.fasterxml.jackson.core declared as RequestPayload Modifier and Type Field Description protected RequestPayload
JsonParseException. _requestPayload
Optional payload that can be assigned to pass along for error reporting or handling purposes.protected RequestPayload
JsonParser. _requestPayload
Optional container that holds the request payload which will be displayed on JSON parsing error.Methods in com.fasterxml.jackson.core that return RequestPayload Modifier and Type Method Description RequestPayload
JsonParseException. 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 with parameters of type RequestPayload Modifier and Type Method Description void
JsonParser. setRequestPayloadOnError(RequestPayload payload)
Sets the payload to be passed ifJsonParseException
is thrown.JsonParseException
JsonParseException. withRequestPayload(RequestPayload p)
Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes.
-