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

javarepl.console.rest.MapToJsonResponseHandler Maven / Gradle / Ivy

package javarepl.console.rest;

import com.googlecode.totallylazy.json.Json;
import com.googlecode.utterlyidle.Response;
import com.googlecode.utterlyidle.ResponseHandler;

public class MapToJsonResponseHandler implements ResponseHandler {
    public Response handle(Response response) throws Exception {
        return response.entity(Json.json(response.entity().value()));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy