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

javax.servlet.http.HttpServletRequest Maven / Gradle / Ivy

package javax.servlet.http;


import javax.servlet.ServletRequest;

public interface HttpServletRequest extends ServletRequest {

    String getHeader(String name);

    String getQueryString();

    String getRequestedSessionId();

    Cookie[] getCookies();

    HttpSession getSession();

    HttpSession getSession(boolean create);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy