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

com.genexus.servlet.http.IHttpServletRequest Maven / Gradle / Ivy

Go to download

Core classes for the runtime used by Java and Android apps generated with GeneXus

There is a newer version: 4.7.3
Show newest version
package com.genexus.servlet.http;

import java.io.BufferedReader;
import java.util.Enumeration;

import com.genexus.servlet.IRequestDispatcher;
import com.genexus.servlet.IServletInputStream;
import com.genexus.servlet.IServletContext;

public interface IHttpServletRequest {
	String getContextPath();
	StringBuffer getRequestURL();
	String getQueryString();
	String getContentType();
	String getServletPath();
	String getRequestURI();
	Object getAttribute(String name);
	void setAttribute(String name, Object o);
	String getRemoteAddr();
	String getRemoteUser();
	String getRemoteHost();
	IHttpSession getSession(boolean create);
	int getServerPort();
	String getServerName();
	String getScheme();
	IRequestDispatcher getRequestDispatcher(String path);
	String getRequestedSessionId();
	boolean isRequestedSessionIdValid();
	Enumeration getParameterNames();
	String[] getParameterValues(String name);
	String getCharacterEncoding();
	boolean isSecure();
	int getContentLength();
	IServletInputStream getInputStream() throws java.io.IOException;
	ICookie[]	getCookies();
	String getHeader(String name);
	Enumeration getHeaders(String name);
	Enumeration getHeaderNames();
	String getMethod();
	IServletContext getServletContext();
	BufferedReader getReader() throws java.io.IOException;
	String getRealPath(String path);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy