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

nl.vpro.domain.media.bind.BroadcasterListToJson Maven / Gradle / Ivy

Go to download

The basic domain classes for 'media', the core of POMS. Also, the 'update' XML bindings for it. It also contains some closely related domain classes like the enum to contain NICAM kijkwijzer settings.

There is a newer version: 8.3.1
Show newest version
package nl.vpro.domain.media.bind;

import java.io.IOException;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;

import nl.vpro.domain.bind.AbstractJsonIterable;
import nl.vpro.domain.user.Broadcaster;

/**
 * Used to let the broadcaster list in the MediaObject json be just an array of strings (see MSE-1267)
 * @author Michiel Meeuwissen
 */
public class BroadcasterListToJson extends AbstractJsonIterable.Serializer {


    @Override
    protected void serializeValue(Broadcaster value, JsonGenerator jgen, SerializerProvider serializerProvider) throws IOException {
        jgen.writeString(value.getDisplayName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy