io.getunleash.DefaultCustomHttpHeadersProviderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unleash-client-java Show documentation
Show all versions of unleash-client-java Show documentation
A client library for Unleash
The newest version!
package io.getunleash;
import java.util.HashMap;
import java.util.Map;
public class DefaultCustomHttpHeadersProviderImpl implements CustomHttpHeadersProvider {
@Override
public Map getCustomHeaders() {
return new HashMap<>();
}
}