Class InlineSchemaModule
java.lang.Object
com.github.victools.jsonschema.generator.impl.module.InlineSchemaModule
- All Implemented Interfaces:
CustomDefinitionProviderV2,Module,StatefulConfig
Default module being included if
Option.INLINE_ALL_SCHEMAS is enabled.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidApply this module to the given configuration builder instance.provideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, SchemaGenerationContext context) Look-up the non-standard JSON schema definition for a given type.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.github.victools.jsonschema.generator.StatefulConfig
resetAfterSchemaGenerationFinished
-
Constructor Details
-
InlineSchemaModule
public InlineSchemaModule()
-
-
Method Details
-
applyToConfigBuilder
Description copied from interface:ModuleApply this module to the given configuration builder instance.- Specified by:
applyToConfigBuilderin interfaceModule- Parameters:
builder- configuration builder instance to which to apply this module
-
provideCustomSchemaDefinition
public CustomDefinition provideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, SchemaGenerationContext context) Description copied from interface:CustomDefinitionProviderV2Look-up the non-standard JSON schema definition for a given type. If it returns null, the next definition provider is expected to be applied.- Specified by:
provideCustomSchemaDefinitionin interfaceCustomDefinitionProviderV2- Parameters:
javaType- generic type to provide custom definition forcontext- generation context allowing to let the standard generation take over nested parts of the custom definition- Returns:
- non-standard JSON schema definition (may be null)
-