Interface CustomDefinitionProvider
- All Superinterfaces:
CustomDefinitionProviderV2,StatefulConfig
Deprecated.
Provider of non-standard JSON schema definitions.
-
Method Summary
Modifier and TypeMethodDescriptiondefault CustomDefinitionprovideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, SchemaGenerationContext context) Deprecated.Look-up the non-standard JSON schema definition for a given type.provideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, TypeContext context) Deprecated.Look-up the non-standard JSON schema definition for a given type.Methods inherited from interface com.github.victools.jsonschema.generator.StatefulConfig
resetAfterSchemaGenerationFinished
-
Method Details
-
provideCustomSchemaDefinition
CustomDefinition provideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, TypeContext context) Deprecated.Look-up the non-standard JSON schema definition for a given type. If it returns null, the next definition provider is expected to be applied.- Parameters:
javaType- generic type to provide custom definition forcontext- overall type resolution context being used- Returns:
- non-standard JSON schema definition (may be null)
-
provideCustomSchemaDefinition
default CustomDefinition provideCustomSchemaDefinition(com.fasterxml.classmate.ResolvedType javaType, SchemaGenerationContext context) Deprecated.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)
-
CustomDefinitionProviderV2instead