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

org.mnode.ical4j.json.schema.SchemaPersonSerializer Maven / Gradle / Ivy

The newest version!
package org.mnode.ical4j.json.schema;

import com.fasterxml.jackson.databind.JsonNode;
import net.fortuna.ical4j.vcard.VCard;

public class SchemaPersonSerializer extends AbstractSchemaCardSerializer {

    public SchemaPersonSerializer(Class t) {
        super(t);
    }

    @Override
    protected JsonNode buildSchema(VCard card) {
        AbstractSchemaBuilder builder = new SchemaPersonBuilder().component(card);
        return builder.build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy