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

org.lantern.VersionNumberDeserializer Maven / Gradle / Ivy

Go to download

Lantern is a peer-to-peer and trust-network-based tool for circumventing censors and preventing monitoring.

There is a newer version: 0.1
Show newest version
package org.lantern;

import java.io.IOException;

import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.JsonDeserializer;

public class VersionNumberDeserializer extends JsonDeserializer {

    @Override
    public VersionNumber deserialize(JsonParser jp, DeserializationContext ctxt)
            throws IOException, JsonProcessingException {
        return new VersionNumber(jp.readValueAsTree().getTextValue());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy