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

com.launchdarkly.testhelpers.httptest.Handler Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.launchdarkly.testhelpers.httptest;

import javax.servlet.http.HttpServletResponse;

/**
 * An object or lambda that handles HTTP requests for a {@link HttpServer}.
 * 

* Use the factory methods in {@link Handlers} to create standard implementations. */ @FunctionalInterface public interface Handler { /** * Processes the request. * * @param context a {@link RequestContext} that provides both the request information * and the {@link HttpServletResponse} */ public void apply(RequestContext context); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy