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

javax.servlet.ServletRequest Maven / Gradle / Ivy

package javax.servlet;

import java.util.Enumeration;
import java.util.Map;

public interface ServletRequest {

    String getContentType();

    String getServerName();

    String getParameter(String name);

    Enumeration getParameterNames();

    String[] getParameterValues(String name);

    Map getParameterMap();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy