com.github.kristofa.test.http.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mock-http-server Show documentation
Show all versions of mock-http-server Show documentation
Mock and Proxy HTTP Server for testing purposes. Forked from https://github.com/jharlap/mock-http-server
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