forked from loafle/openapi-generator-original
13 lines
321 B
Plaintext
13 lines
321 B
Plaintext
package {{invokerPackage}}.auth;
|
|
|
|
import {{invokerPackage}}.Pair;
|
|
|
|
import java.util.Map;
|
|
import java.util.List;
|
|
|
|
{{>generatedAnnotation}}
|
|
public interface Authentication {
|
|
/** Apply authentication settings to header and query params. */
|
|
void applyToParams(List<Pair> queryParams, Map<String, String> headerParams);
|
|
}
|