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

io.joshworks.restclient.http.Headers Maven / Gradle / Ivy

package io.joshworks.restclient.http;

import java.util.HashMap;
import java.util.List;

public class Headers extends HashMap> {

    public String getFirst(Object key) {
        List list = get(key);
        if (list != null && list.size() > 0) {
            return list.get(0);
        }
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy