com.dingtalk.open.app.api.protocol.JsonMessageConverter Maven / Gradle / Ivy
package com.dingtalk.open.app.api.protocol;
import com.alibaba.fastjson2.JSON;
import java.lang.reflect.Type;
/**
* @author feiyin
* @date 2023/3/7
*/
public class JsonMessageConverter implements MessageConverter {
@Override
public T convert(String data, Type type) {
if (data == null) {
return null;
}
return JSON.parseObject(data, type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy