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

com.progressoft.brix.domino.api.server.response.ResponseContext Maven / Gradle / Ivy

The newest version!
package com.progressoft.brix.domino.api.server.response;

import com.progressoft.brix.domino.api.shared.request.ResponseBean;

public interface ResponseContext {

    ResponseContext putHeader(String name, String value);

    ResponseContext putHeader(String name, Iterable values);

    ResponseContext statusCode(int statusCode);

    void end();

    void end(T body);

    void end(String body);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy