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

com.nimbusds.oauth2.sdk.Response Maven / Gradle / Ivy

package com.nimbusds.oauth2.sdk;


import com.nimbusds.oauth2.sdk.http.HTTPResponse;


/**
 * Response message, serialises to an HTTP response.
 */
public interface Response extends Message {

	
	/**
	 * Returns the matching HTTP response.
	 *
	 * @return The HTTP response.
	 *
	 * @throws SerializeException If the response message couldn't be 
	 *                            serialised to an HTTP response.
	 */
	public HTTPResponse toHTTPResponse() 
		throws SerializeException;
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy