com.symphony.bdk.http.api.auth.Authentication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-bdk-http-api Show documentation
Show all versions of symphony-bdk-http-api Show documentation
Symphony Java BDK Core Http API
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