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

org.codingmatters.rest.api.ResponseDelegate Maven / Gradle / Ivy

The newest version!
package org.codingmatters.rest.api;

import java.io.InputStream;

/**
 * Created by nelt on 4/27/17.
 */
public interface ResponseDelegate extends AutoCloseable {
    ResponseDelegate contenType(String contenType);
    ResponseDelegate status(int code);
    ResponseDelegate addHeader(String name, String ... value);
    ResponseDelegate payload(String payload, String charset);
    ResponseDelegate payload(byte[] bytes);
    ResponseDelegate payload(InputStream in);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy