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

io.github.dbstarll.utils.json.jackson.JsonIndexResponseHandlerFactory Maven / Gradle / Ivy

The newest version!
package io.github.dbstarll.utils.json.jackson;

import com.fasterxml.jackson.databind.ObjectMapper;
import io.github.dbstarll.utils.http.client.response.AbstractResponseHandlerFactory;
import org.apache.hc.core5.http.io.HttpClientResponseHandler;

class JsonIndexResponseHandlerFactory extends AbstractResponseHandlerFactory {
    JsonIndexResponseHandlerFactory(final HttpClientResponseHandler stringResponseHandler,
                                    final ObjectMapper mapper) {
        addResponseHandler(JsonNodeIndex.class, new JsonNodeIndexResponseHandler(stringResponseHandler, mapper));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy