We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7b0641 commit c55cc0dCopy full SHA for c55cc0d
modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/ISchemaHandler.java
@@ -0,0 +1,13 @@
1
+package io.swagger.codegen.v3;
2
+
3
+import io.swagger.v3.oas.models.media.Schema;
4
5
+public interface ISchemaHandler {
6
7
+ /**
8
+ * check if there is any composed schema in models or properties. And create codegen model objects if it's required.
9
+ * @param codegenModel
10
+ * @param schema
11
+ */
12
+ void proccessComposedSchemas(CodegenModel codegenModel, Schema schema);
13
+}
0 commit comments