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

com.github.kristofa.test.http.HttpResponse Maven / Gradle / Ivy

Go to download

Mock and Proxy HTTP Server for testing purposes. Forked from https://github.com/jharlap/mock-http-server

There is a newer version: 4.1
Show newest version
package com.github.kristofa.test.http;

/**
 * HTTP response.
 * 
 * @author kristof
 */
public interface HttpResponse {

    /**
     * Gets a HTTP response code.
     * 
     * @return Gets a HTTP response code.
     */
    int getHttpCode();

    /**
     * Get content type.
     * 
     * @return Get content type.
     */
    String getContentType();

    /**
     * Get response content.
     * 
     * @return Response content.
     */
    byte[] getContent();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy