public Request()

in api/src/main/java/org/apache/peeco/api/Request.java [35:43]


    public Request(HttpMethod httpMethod, String url, InputStream stream)
    {
        this.httpMethod = httpMethod;
        this.url = url;
        this.inputStream = stream;
        this.headers = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
        this.bodyParameters = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
        this.queryParameters = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
    }