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

com.qcloud.cos.internal.cihandler.CIJsonHandler Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.internal.cihandler;

import com.fasterxml.jackson.databind.ObjectMapper;

import java.io.IOException;
import java.io.InputStream;

public class CIJsonHandler {

    public T getResponse(InputStream in, Class tClass) throws IOException {
        ObjectMapper mapper = new ObjectMapper();
        return mapper.readValue(in, tClass);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy