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

org.frameworkset.http.HttpRequest Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
package org.frameworkset.http;

import java.net.URI;

import org.frameworkset.util.annotations.HttpMethod;

public interface HttpRequest  extends HttpMessage {

	/**
	 * Return the HTTP method of the request.
	 * @return the HTTP method as an HttpMethod enum value, or {@code null}
	 * if not resolvable (e.g. in case of a non-standard HTTP method)
	 */
	HttpMethod getMethod();

	/**
	 * Return the URI of the request.
	 * @return the URI of the request (never {@code null})
	 */
	URI getURI();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy