All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.optionfactory.spring.marshaling.jackson.quirks.QuirkHandler Maven / Gradle / Ivy

There is a newer version: 19.12
Show newest version
package net.optionfactory.spring.marshaling.jackson.quirks;

import com.fasterxml.jackson.databind.deser.SettableBeanProperty;
import com.fasterxml.jackson.databind.ser.BeanPropertyWriter;
import java.lang.annotation.Annotation;

public interface QuirkHandler {

    Class annotation();

    BeanPropertyWriter serialization(A ann, BeanPropertyWriter bpw);

    SettableBeanProperty deserialization(A ann, SettableBeanProperty sbp);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy