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

com.dingtalk.open.app.api.protocol.JsonMessageConverter Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
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