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

net.nemerosa.ontrack.model.support.IDJsonDeserializer Maven / Gradle / Ivy

There is a newer version: 4.4.5
Show newest version
package net.nemerosa.ontrack.model.support;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import net.nemerosa.ontrack.model.structure.ID;

import java.io.IOException;

public class IDJsonDeserializer extends JsonDeserializer {
    @Override
    public ID deserialize(JsonParser p, DeserializationContext ctxt) throws IOException {
        Integer value = p.readValueAs(Integer.class);
        return value != null ? ID.of(value) : ID.NONE;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy