com.anrisoftware.simplerest.json.AbstractParseJsonResponse.java Source code

Java tutorial

Introduction

Here is the source code for com.anrisoftware.simplerest.json.AbstractParseJsonResponse.java

Source

/*
 * Copyright 2016 Erwin Mller <erwin.mueller@deventm.org>
 *
 * This file is part of simplerest-core.
 *
 * simplerest-core is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by the
 * Free Software Foundation, either version 3 of the License, or (at your
 * option) any later version.
 *
 * simplerest-core is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with simplerest-core. If not, see <http://www.gnu.org/licenses/>.
 */
package com.anrisoftware.simplerest.json;

import java.io.IOException;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;

import com.anrisoftware.simplerest.core.ParseResponse;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.ObjectMapper;

/**
 * Parses the HTTP response JSON output.
 *
 * @author Erwin Mller, erwin.mueller@deventm.de
 * @since 1.0
 */
public class AbstractParseJsonResponse<T> implements ParseResponse<T> {

    private final Class<? extends T> responseType;

    /**
     * Sets the response type.
     *
     * @param responseType
     *            the {@link Class} response type.
     */
    protected AbstractParseJsonResponse(Class<? extends T> responseType) {
        this.responseType = responseType;
    }

    @Override
    public T parse(HttpResponse response) throws IOException {
        HttpEntity entity = response.getEntity();
        ObjectMapper mapper = new ObjectMapper();
        JsonFactory factory = mapper.getFactory();
        JsonParser parser = factory.createParser(entity.getContent());
        T result = mapper.readValue(parser, responseType);
        return result;
    }

}