com.queue_it.connector.IHttpRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
SDK for integrating your application with Queue-it
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);
}