![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.live.plugins.messenger.chat.EventUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-messenger Show documentation
Show all versions of plugin-messenger Show documentation
Intelie Live Messenger Plugin
The newest version!
package net.intelie.live.plugins.messenger.chat;
import net.intelie.live.LiveJson;
import java.util.Map;
public class EventUtils {
public static T fromEvent(Object obj, Class cls) {
return LiveJson.fromJson(LiveJson.toJsonTree(obj), cls);
}
@SuppressWarnings("unchecked")
public static Map toEvent(Object obj) {
return LiveJson.fromJson(LiveJson.toJsonTree(obj), Map.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy