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

com.queue_it.connector.IHttpRequest Maven / Gradle / Ivy

The newest version!
package com.queue_it.connector;

import java.net.URI;
import java.util.HashMap;

public interface IHttpRequest {

    String getUserAgent();

    HashMap getHeaders();

    URI getUri();

    String getUserHostAddress();

    String getCookieValue(String cookieKey);

    abstract String getRequestBodyAsString();

    String getHeader(String headerValue);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy