com.ning.http.client.simple.HeaderMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payment-retries-plugin Show documentation
Show all versions of payment-retries-plugin Show documentation
Kill Bill Payment Retries plugin
The newest version!
package com.ning.http.client.simple;
/*
* Copyright (c) 2010 Sonatype, Inc. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
* You may obtain a copy of the Apache License Version 2.0 at http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the Apache License Version 2.0 is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
*/
import com.ning.http.client.FluentCaseInsensitiveStringsMap;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* A map containing headers with the sole purpose of being given to
* {@link SimpleAHCTransferListener#onHeaders(String, HeaderMap)}.
*
* @author Benjamin Hanzelmann
*/
public class HeaderMap implements Map> {
private FluentCaseInsensitiveStringsMap headers;
public HeaderMap(FluentCaseInsensitiveStringsMap headers) {
this.headers = headers;
}
public Set keySet() {
return headers.keySet();
}
public Set>> entrySet() {
return headers.entrySet();
}
public int size() {
return headers.size();
}
public boolean isEmpty() {
return headers.isEmpty();
}
public boolean containsKey(Object key) {
return headers.containsKey(key);
}
public boolean containsValue(Object value) {
return headers.containsValue(value);
}
/**
* @see FluentCaseInsensitiveStringsMap#getFirstValue(String)
*/
public String getFirstValue(String key) {
return headers.getFirstValue(key);
}
/**
* @see FluentCaseInsensitiveStringsMap#getJoinedValue(String, String)
*/
public String getJoinedValue(String key, String delimiter) {
return headers.getJoinedValue(key, delimiter);
}
public List get(Object key) {
return headers.get(key);
}
/**
* Only read access is supported.
*/
public List put(String key, List value) {
throw new UnsupportedOperationException("Only read access is supported.");
}
/**
* Only read access is supported.
*/
public List remove(Object key) {
throw new UnsupportedOperationException("Only read access is supported.");
}
/**
* Only read access is supported.
*/
public void putAll(Map extends String, ? extends List> t) {
throw new UnsupportedOperationException("Only read access is supported.");
}
/**
* Only read access is supported.
*/
public void clear() {
throw new UnsupportedOperationException("Only read access is supported.");
}
/**
* Only read access is supported.
*/
public Collection> values() {
return headers.values();
}
}