com.unblu.webapi.jersey.v3.invoker.auth.Authentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jersey-client-v3 Show documentation
Show all versions of jersey-client-v3 Show documentation
Client implemented using Jersey
The newest version!
package com.unblu.webapi.jersey.v3.invoker.auth;
import java.util.List;
import java.util.Map;
import com.unblu.webapi.jersey.v3.invoker.Pair;
public interface Authentication {
/**
* Apply authentication settings to header and query params.
*
* @param queryParams List of query parameters
* @param headerParams Map of header parameters
*/
void applyToParams(List queryParams, Map headerParams);
}