mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-14 08:31:19 +00:00
* fix java doc for okhttp-gson * add ci test for javadoc * fix return type for java doc * fix warning/error with javadoc * fix error/warning in javadoc * fix 2 warnings related to docstring * remove trailing space for okhttp tmeplate
17 lines
422 B
Plaintext
17 lines
422 B
Plaintext
package {{invokerPackage}}.auth;
|
|
|
|
import {{invokerPackage}}.Pair;
|
|
|
|
import java.util.Map;
|
|
import java.util.List;
|
|
|
|
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<Pair> queryParams, Map<String, String> headerParams);
|
|
}
|