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

io.datawire.quark.runtime.HTTPResponse Maven / Gradle / Ivy

package io.datawire.quark.runtime;

import java.util.ArrayList;

public interface HTTPResponse {
    Integer getCode();
    void setCode(Integer code);
    String getBody();
    void setBody(String body);
    String getHeader(String key);
    void setHeader(String key, String value);
    ArrayList getHeaders();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy