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

me.vcoder.httplogger.TraceableResponse Maven / Gradle / Ivy

package me.vcoder.httplogger;

import java.util.List;
import java.util.Map;

/**
 * @author baodn
 * Created on 11 Apr 2018
 */
public interface TraceableResponse {
    /**
     * The status of the response.
     * @return the status
     */
    int getStatus();

    /**
     * Returns a modifiable copy of the headers of the response.
     * @return the headers
     */
    Map> getHeaders();

    /**
     * Get Body of Response
     * @return
     */
    String getBody();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy