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

fr.lecomptoirdespharmacies.medipim.api.client.Response Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package fr.lecomptoirdespharmacies.medipim.api.client;

import com.fasterxml.jackson.databind.JsonNode;

public interface Response {
    /**
     * @return the HTTP status code from the response.
     */
    int getStatus();

    /** @return the body as a string. */
    String getBody();

    /**
     * Gets the body as JSON node.
     *
     * @return json node.
     */
    JsonNode asJson();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy