com.mashape.unirest.http.Headers Maven / Gradle / Ivy
package com.mashape.unirest.http;
import java.util.HashMap;
import java.util.List;
public class Headers extends HashMap> {
private static final long serialVersionUID = 71310341388734766L;
public String getFirst(Object key) {
List list = get(key);
if (list != null && list.size() > 0) {
return list.get(0);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy