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

com.teststeps.thekla4j.http.core.HttpResult Maven / Gradle / Ivy

package com.teststeps.thekla4j.http.core;

import com.teststeps.thekla4j.http.commons.Cookie;
import io.vavr.collection.HashMap;
import io.vavr.collection.List;

public interface HttpResult {
    Integer statusCode();
    String response();
    HashMap> headers();
    List cookies();

    String toString();

    String toString(int indent);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy