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

io.prometheus.client.servlet.common.adapter.HttpServletResponseAdapter Maven / Gradle / Ivy

package io.prometheus.client.servlet.common.adapter;

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

public interface HttpServletResponseAdapter {
    int getStatus();
    void setStatus(int httpStatusCode);
    void setContentType(String contentType);
    PrintWriter getWriter() throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy