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

com.dingtalk.open.app.api.callback.JsonMarshaller Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.dingtalk.open.app.api.callback;

import com.alibaba.fastjson2.JSON;
import com.dingtalk.open.app.api.Preconditions;

import java.lang.reflect.Type;

/**
 * @author feiyin
 * @date 2023/3/17
 */
class JsonMarshaller implements Marshaller{
    private final Type type;

    public JsonMarshaller(Type type) {
        this.type = Preconditions.notNull(type);
    }
    @Override
    public  T marshal(Object data) {
        return JSON.parseObject(JSON.toJSONString(data), type);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy