All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.symphony.bdk.http.api.auth.Authentication Maven / Gradle / Ivy

The newest version!
package com.symphony.bdk.http.api.auth;

import com.symphony.bdk.http.api.ApiClient;
import com.symphony.bdk.http.api.ApiException;

import org.apiguardian.api.API;

import java.util.Map;

/**
 * Definition of an authentication scheme.
 * 

* An authentication scheme can be set through the {@link ApiClient#getAuthentications()} map. */ @API(status = API.Status.STABLE) public interface Authentication { /** * Apply authentication settings to header params. * * @param headerParams Map of header parameters */ void apply(Map headerParams) throws ApiException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy