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

com.netflix.client.http.HttpHeaders Maven / Gradle / Ivy

There is a newer version: 2.7.18
Show newest version
package com.netflix.client.http;

import java.util.List;
import java.util.Map.Entry;

public interface HttpHeaders {

    public String getFirstValue(String headerName);
    
    public List getAllValues(String headerName);
    
    public List> getAllHeaders();
    
    public boolean containsHeader(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy