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

com.nimbusds.oauth2.sdk.http.HTTPEndpoint Maven / Gradle / Ivy

package com.nimbusds.oauth2.sdk.http;


/**
 * HTTP endpoint.
 */
public interface HTTPEndpoint {


	/**
	 * Processes an HTTP request.
	 *
	 * @param httpRequest The HTTP request to process. Must not be
	 *                    {@code null}.
	 *
	 * @return The HTTP response.
	 */
	public HTTPResponse process(final HTTPRequest httpRequest);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy