com.newrelic.api.agent.ExtendedInboundHeaders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of newrelic-api Show documentation
Show all versions of newrelic-api Show documentation
New Relics's Java Api Jar.
/*
*
* * Copyright 2020 New Relic Corporation. All rights reserved.
* * SPDX-License-Identifier: Apache-2.0
*
*/
package com.newrelic.api.agent;
import java.util.Collections;
import java.util.List;
public abstract class ExtendedInboundHeaders implements InboundHeaders {
public List getHeaders(String name) {
return Collections.emptyList();
}
}