com.github.kristofa.test.http.HttpRequestResponseLoggerFactory 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;
/**
* Responsible for creating {@link HttpRequestResponseLogger} instances.
*
* @see LoggingHttpProxy
* @author kristof
*/
public interface HttpRequestResponseLoggerFactory {
/**
* Creates a new {@link HttpRequestResponseLogger}. Each request should return a new instance.
*
* @return a New {@link HttpRequestResponseLogger}.
*/
HttpRequestResponseLogger getHttpRequestResponseLogger();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy