mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-16 08:31:26 +00:00
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
package {{invokerPackage}}.auth;
|
|
|
|
import {{invokerPackage}}.Pair;
|
|
|
|
import java.util.Map;
|
|
import java.util.List;
|
|
|
|
{{>generatedAnnotation}}
|
|
public class OAuth implements Authentication {
|
|
@Override
|
|
public void applyToParams(List<Pair> queryParams, Map<String, String> headerParams) {
|
|
// TODO: support oauth
|
|
}
|
|
}
|