com.genexus.servlet.http.IHttpServletRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxwrappercommon Show documentation
Show all versions of gxwrappercommon Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
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