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

javax.servlet.ServletResponse Maven / Gradle / Ivy

package javax.servlet;

import java.io.IOException;
import java.io.PrintWriter;

public interface ServletResponse {

    PrintWriter getWriter() throws IOException;

    ServletOutputStream getOutputStream() throws IOException;

    void setContentType(String contentType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy