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

io.joshworks.restclient.http.mapper.JsonMapper Maven / Gradle / Ivy

package io.joshworks.restclient.http.mapper;

import com.google.gson.Gson;

/**
 * Created by Josh Gontijo on 5/5/17.
 */
public class JsonMapper implements ObjectMapper {
    private final Gson gson = new Gson();
    @Override
    public  T readValue(String value, Class valueType) {
        return gson.fromJson(value, valueType);
    }

    @Override
    public String writeValue(Object value) {
        return gson.toJson(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy