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

com.ericsson.research.trap.nhttpd.Request Maven / Gradle / Ivy

The newest version!
package com.ericsson.research.trap.nhttpd;

import java.io.InputStream;
import java.util.Map;

/**
 * Handles one session, i.e. parses the HTTP request and returns the response.
 */
public interface Request
{
	Map getParms();

	Map getHeaders();

	/**
	 * @return the path part of the URL.
	 */
	String getUri();

	String getQueryParameterString();

	Method getMethod();

	CookieHandler getCookies();

	InputStream getInputStream();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy