Example usage for com.fasterxml.jackson.databind JsonSerializer interface-usage

List of usage examples for com.fasterxml.jackson.databind JsonSerializer interface-usage

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind JsonSerializer interface-usage.

Usage

From source file org.jasig.cas.util.AbstractJacksonBackedJsonSerializer.java

/**
 * Generic class to serialize objects to/from JSON based on jackson.
 * @author Misagh Moayyed
 * @since 4.1
 */
public abstract class AbstractJacksonBackedJsonSerializer<T> implements JsonSerializer<T> {

From source file com.smartsheet.api.internal.json.JacksonJsonSerializer.java

/**
 * This is the Jackson based JsonSerializer implementation.
 * 
 * Thread Safety: This class is thread safe because it is immutable and the underlying Jackson ObjectMapper is thread
 * safe as long as it is not re-configured.
 */