org.mayocat.rest.jackson.MayocatGroovyGStringSerializer.java Source code

Java tutorial

Introduction

Here is the source code for org.mayocat.rest.jackson.MayocatGroovyGStringSerializer.java

Source

/*
 * Copyright (c) 2012, Mayocat <hello@mayocat.org>
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.mayocat.rest.jackson;

import java.io.IOException;
import java.util.Locale;

import com.fasterxml.jackson.core.JsonGenerationException;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;

import groovy.lang.GString;

/**
 * Serializer that transforms a Groovy GString into a regalur Java String.
 *
 * /`Y`\
 *
 * @version $Id: ebe896854062315619774ad4187b07777882428b $
 */
public class MayocatGroovyGStringSerializer extends StdSerializer<GString> {
    protected MayocatGroovyGStringSerializer() {
        super(GString.class);
    }

    @Override
    public void serialize(GString gString, JsonGenerator jsonGenerator, SerializerProvider serializerProvider)
            throws IOException, JsonGenerationException {
        // IETF BCP 47
        jsonGenerator.writeString(gString.toString());
    }
}