com.unblu.webapi.jersey.v3.invoker.auth.Authentication Maven / Gradle / Ivy
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);
}