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 c55cc0d commit 663e9d3Copy full SHA for 663e9d3
modules/swagger-codegen/src/main/java/io/swagger/codegen/v3/ISchemaHandler.java
@@ -2,6 +2,8 @@
2
3
import io.swagger.v3.oas.models.media.Schema;
4
5
+import java.util.List;
6
+
7
public interface ISchemaHandler {
8
9
/**
@@ -10,4 +12,10 @@ public interface ISchemaHandler {
10
12
* @param schema
11
13
*/
14
void proccessComposedSchemas(CodegenModel codegenModel, Schema schema);
15
16
+ /**
17
+ * retrieve a list of codegen models created from composed schemas found.
18
+ * @return
19
+ */
20
+ List<CodegenModel> getModels();
21
}
0 commit comments