com.abubusoft.kripton.KriptonJsonContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-core Show documentation
Show all versions of kripton-core Show documentation
Kripton Persistence Library - core module
package com.abubusoft.kripton;
import com.fasterxml.jackson.core.JsonFactory;
/**
* @author Francesco Benincasa ([email protected])
*
*/
public class KriptonJsonContext extends AbstractJacksonContext {
@Override
public BinderType getSupportedFormat()
{
return BinderType.JSON;
}
@Override
public JsonFactory createInnerFactory()
{
return new JsonFactory();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy