net.optionfactory.hj.JsonDriverLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-json Show documentation
Show all versions of hibernate-json Show documentation
Custom Hibernate types for serializing fields as JSON, using either jackson or gson
package net.optionfactory.hj;
import java.lang.annotation.Annotation;
import java.util.Optional;
/**
*
* @author rferranti
*/
public interface JsonDriverLocator {
JsonDriver locate(Annotation[] fieldAnnotations, Optional name);
}