Class ObjectReaderModifier
- java.lang.Object
-
- com.fasterxml.jackson.jakarta.rs.cfg.ObjectReaderModifier
-
public abstract class ObjectReaderModifier extends Object
- Since:
- 2.3
-
-
Constructor Summary
Constructors Constructor Description ObjectReaderModifier()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract com.fasterxml.jackson.databind.ObjectReader
modify(EndpointConfigBase<?> endpoint, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, com.fasterxml.jackson.databind.JavaType resultType, com.fasterxml.jackson.databind.ObjectReader r, com.fasterxml.jackson.core.JsonParser p)
Method called to let modifier make any changes it wants to to objects used for reading request objects for specified endpoint.
-
-
-
Method Detail
-
modify
public abstract com.fasterxml.jackson.databind.ObjectReader modify(EndpointConfigBase<?> endpoint, jakarta.ws.rs.core.MultivaluedMap<String,String> httpHeaders, com.fasterxml.jackson.databind.JavaType resultType, com.fasterxml.jackson.databind.ObjectReader r, com.fasterxml.jackson.core.JsonParser p) throws IOException
Method called to let modifier make any changes it wants to to objects used for reading request objects for specified endpoint.- Parameters:
endpoint
- End point for which reader is usedhttpHeaders
- HTTP headers sent with request (read-only)resultType
- Type that input is to be bound tor
- ObjectReader as constructed for endpoint, type to handlep
- Parser to use for reading content- Throws:
IOException
-
-