com.genexus.internet.HttpGXServletRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxclassR Show documentation
Show all versions of gxclassR Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.internet;
import com.genexus.servlet.http.IHttpServletRequest;
public class HttpGXServletRequest {
private IHttpServletRequest request = null;
public HttpGXServletRequest() {
}
public void setHttpServletRequest(IHttpServletRequest request)
{
this.request = request;
}
public IHttpServletRequest getHttpServletRequest()
{
return request;
}
public String getServerName()
{
return request.getServerName();
}
public int getServerPort()
{
return request.getServerPort();
}
public String getRequestURI()
{
return request.getRequestURI();
}
public String getServletPath()
{
return request.getServletPath();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy