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

com.github.parisoft.resty.response.http.HttpResponseExtension Maven / Gradle / Ivy

package com.github.parisoft.resty.response.http;

import java.io.IOException;
import java.net.HttpCookie;
import java.util.List;

import com.github.parisoft.resty.response.Response;


public interface HttpResponseExtension {

    public int getStatusCode();

    public Response assertOk();

    public Response assertStatus(int httpStatus);

    public HttpCookie getCookie(String name) throws IOException;

    public List getCookies() throws IOException;

    public void setResponse(Response response);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy