Class ObjectWriterModifier
- java.lang.Object
-
- com.fasterxml.jackson.jakarta.rs.cfg.ObjectWriterModifier
-
public abstract class ObjectWriterModifier extends Object
- Since:
- 2.3
-
-
Constructor Summary
Constructors Constructor Description ObjectWriterModifier()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract com.fasterxml.jackson.databind.ObjectWriter
modify(EndpointConfigBase<?> endpoint, jakarta.ws.rs.core.MultivaluedMap<String,Object> responseHeaders, Object valueToWrite, com.fasterxml.jackson.databind.ObjectWriter w, com.fasterxml.jackson.core.JsonGenerator g)
Method called to let modifier make any changes it wants to to objects used for writing response for specified endpoint.
-
-
-
Method Detail
-
modify
public abstract com.fasterxml.jackson.databind.ObjectWriter modify(EndpointConfigBase<?> endpoint, jakarta.ws.rs.core.MultivaluedMap<String,Object> responseHeaders, Object valueToWrite, com.fasterxml.jackson.databind.ObjectWriter w, com.fasterxml.jackson.core.JsonGenerator g) throws IOException
Method called to let modifier make any changes it wants to to objects used for writing response for specified endpoint.- Parameters:
responseHeaders
- HTTP headers being returned with response (mutable)- Throws:
IOException
-
-