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

com.vladmihalcea.hibernate.type.util.ObjectMapperSupplier Maven / Gradle / Ivy

There is a newer version: 2.21.1
Show newest version
package com.vladmihalcea.hibernate.type.util;

import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.Serializable;

/**
 * Supplies a custom reference of a Jackson {@link ObjectMapper}
 *
 * @author Vlad Mihalcea
 * @since 2.1.0
 */
public interface ObjectMapperSupplier extends Serializable {

    /**
     * Get custom {@link ObjectMapper} reference
     *
     * @return custom {@link ObjectMapper} reference
     */
    ObjectMapper get();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy