io.jexxa.jlegmed.plugins.messaging.MessageDecoder Maven / Gradle / Ivy
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