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

org.mnode.ical4j.json.jot.JotAlarmMapper Maven / Gradle / Ivy

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

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import com.fasterxml.jackson.databind.DeserializationContext;
import net.fortuna.ical4j.model.component.VAlarm;

import java.io.IOException;
import java.net.URISyntaxException;
import java.text.ParseException;

public class JotAlarmMapper extends AbstractJotCalMapper {

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

    @Override
    public VAlarm deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
        VAlarm alarm = new VAlarm();
        assertCurrentToken(p, JsonToken.START_OBJECT);
        while (!JsonToken.END_OBJECT.equals(p.nextToken())) {
            assertCurrentToken(p, JsonToken.FIELD_NAME);
            String propertyName = p.currentName();
            try {
                if (JsonToken.START_ARRAY.equals(p.nextToken())) {
                    alarm.getProperties().addAll(parsePropertyList(propertyName, p));
                } else {
                    alarm.getProperties().add(parseProperty(propertyName, p));
                }
            } catch (URISyntaxException | ParseException e) {
                throw new IllegalArgumentException(e);
            }
        }
        return alarm;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy