mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-12 15:54:17 +00:00
12 lines
294 B
Plaintext
12 lines
294 B
Plaintext
package {{invokerPackage}}.auth;
|
|
|
|
import {{invokerPackage}}.Pair;
|
|
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
public interface Authentication {
|
|
/** Apply authentication settings to header and query params. */
|
|
void applyToParams(Set<Pair> queryParams, Map<String, String> headerParams);
|
|
}
|