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 importantlyJsonFactoryused 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 RequestPayloadJsonParseException. _requestPayloadOptional payload that can be assigned to pass along for error reporting or handling purposes.protected RequestPayloadJsonParser. _requestPayloadOptional 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 RequestPayloadJsonParseException. 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 voidJsonParser. setRequestPayloadOnError(RequestPayload payload)Sets the payload to be passed ifJsonParseExceptionis thrown.JsonParseExceptionJsonParseException. withRequestPayload(RequestPayload p)Fluent method that may be used to assign payload to this exception, to let recipient access it for diagnostics purposes.
-