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

io.split.client.dtos.RequestContext Maven / Gradle / Ivy

package io.split.client.dtos;

import java.util.Map;
import java.util.List;
/**
 * A structure returning a context for RequestDecorator class
 */

public class RequestContext
{
    private final Map> _headers;

    public RequestContext(Map> headers) {
        _headers = headers;
    }

    public Map> headers() {
        return _headers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy