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