nl.vpro.domain.api.jackson.TextMatcherListJson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
The newest version!
package nl.vpro.domain.api.jackson;
import java.io.IOException;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import nl.vpro.domain.api.StandardMatchType;
import nl.vpro.domain.api.TextMatcher;
import nl.vpro.domain.api.TextMatcherList;
/**
* @author Michiel Meeuwissen
* @since 3.0
*/
public class TextMatcherListJson extends AbstractTextMatcherListJson {
private static final TextMatcherJson SERIALIZER = new TextMatcherJson();
private static final TextMatcherListJson LIST_SERIALIZER = new TextMatcherListJson();
public TextMatcherListJson() {
super(TextMatcherList::new, TextMatcher.class, SERIALIZER);
}
public static class Serializer extends JsonSerializer {
@Override
public void serialize(TextMatcherList value, JsonGenerator gen, SerializerProvider serializers) throws IOException {
LIST_SERIALIZER.serialize(value, gen);
}
}
public static class Deserializer extends JsonDeserializer {
@Override
public TextMatcherList deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
return LIST_SERIALIZER.deserialize(p);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy