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

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

Introduction

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

Usage

From source file org.axway.grapes.server.webapp.views.serialization.LicenseSerializer.java

/**
 * Serialize a license view in Json
 *
 * @author jdcoffre
 */

From source file com.devcraftsman.blog.post.api.util.ISOLocalDateTimeSerializer.java

/**
 * Created by devcraftsman on 4/1/16.
 * ----------------------------------------------------
 * This software is licensed under the Apache 2 license
 * see: [http://www.apache.org/licenses/LICENSE-2.0]
 **/

From source file org.enotron.simulator.utility.JsonByteArrayToHexString.java

/**
 * Json converter for byte[] that gives HexString 
 * Use as @JsonSerialize(using=JsonByteArrayToHexString.class)
 * 
 * @author Sean Condon
 * @date 18-Dec-2014 * 

From source file info.losd.galen.json.InstantToStringSerializer.java

/**
 * The MIT License (MIT)
 * <p>
 * Copyright (c) 2015 Andrew Braithwaite
 * <p>
 * Permission is hereby granted, free of charge, to any person obtaining a copy

From source file org.axway.grapes.server.webapp.views.serialization.LicenseLisSerializer.java

/**
 * Created by jdcoffre on 18/04/14.
 */
public class LicenseLisSerializer extends JsonSerializer<LicenseListView> {
    @Override
    public void serialize(final LicenseListView licenseList, final JsonGenerator jsonGenerator,

From source file utility.LocalDateSerializer.java

/**
 * Copyright 2018 Goldman Sachs.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p>

From source file bz.tsung.jsonapi4j.serialization.SingletonSerializer.java

/**
 * Custom serializer for top-level data.
 */
public class SingletonSerializer extends JsonSerializer<AbstractCollection> {

    @Override

From source file com.yahoo.elide.jsonapi.serialization.SingletonSerializer.java

/**
 * Custom serializer for top-level data.
 */
public class SingletonSerializer extends JsonSerializer<AbstractCollection> {

    @Override

From source file org.lamop.riche.model.WorkEntitySerializer.java

/**
 *
 * @author clril
 */
public class WorkEntitySerializer extends JsonSerializer<WorkEntity> {

From source file com.microsoft.rest.serializer.ByteArraySerializer.java

import org.apache.commons.lang3.ArrayUtils;

import java.io.ByteArrayInputStream;
import java.io.IOException;

/**