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

io.github.stewseo.client.transport.TransportInfo Maven / Gradle / Ivy

package io.github.stewseo.client.transport;

import java.util.List;

public interface TransportInfo {

    String requestUrl();
    byte[] requestBody();
    String requestBodyText();
    // request headers

    int responseStatusCode();
    byte[] responseBody();
    String responseBodyText();
    // response headers

    List warnings();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy