File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
modules/openapi-generator/src/main/java/org/openapitools/codegen Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import io .swagger .v3 .oas .models .OpenAPI ;
21
21
import io .swagger .v3 .parser .core .models .AuthorizationValue ;
22
+
22
23
import org .openapitools .codegen .auth .AuthParser ;
23
24
24
25
import java .util .List ;
@@ -64,6 +65,10 @@ public CodegenConfig getConfig() {
64
65
return config ;
65
66
}
66
67
68
+ /**
69
+ * @deprecated use {@link #config(CodegenConfig)} instead
70
+ * @param config codegen config
71
+ */
67
72
@ Deprecated
68
73
public void setConfig (CodegenConfig config ) {
69
74
this .config = config ;
@@ -74,6 +79,10 @@ public OpenAPI getOpenAPI() {
74
79
return openAPI ;
75
80
}
76
81
82
+ /**
83
+ * @deprecated use {@link #openAPI(OpenAPI)} instead
84
+ * @param openAPI the specification
85
+ */
77
86
@ Deprecated
78
87
public void setOpenAPI (OpenAPI openAPI ) {
79
88
this .openAPI = openAPI ;
You can’t perform that action at this time.
0 commit comments