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

io.jexxa.jlegmed.plugins.messaging.MessageDecoder Maven / Gradle / Ivy

There is a newer version: 3.5.2
Show newest version
package io.jexxa.jlegmed.plugins.messaging;

import io.jexxa.common.facade.json.JSONManager;

public class MessageDecoder {
    public static   T fromJSON(String message, Class typeInformation)
    {
        return JSONManager
                .getJSONConverter()
                .fromJson(message, typeInformation);
    }

    private MessageDecoder() {
        //Private constructor to hide the implicit public one
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy