Class PersistentEntityToJsonSchemaConverter
java.lang.Object
org.springframework.data.rest.webmvc.json.PersistentEntityToJsonSchemaConverter
- All Implemented Interfaces:
ConditionalConverter
,ConditionalGenericConverter
,GenericConverter
public class PersistentEntityToJsonSchemaConverter
extends Object
implements ConditionalGenericConverter
Converter to create
JsonSchema
instances for PersistentEntity
s.- Author:
- Jon Brisbin, Oliver Gierke, Greg Turnquist
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Nested classes/interfaces inherited from interface org.springframework.core.convert.converter.GenericConverter
GenericConverter.ConvertiblePair
-
Constructor Summary
ConstructorDescriptionPersistentEntityToJsonSchemaConverter
(PersistentEntities entities, Associations associations, MessageResolver resolver, com.fasterxml.jackson.databind.ObjectMapper objectMapper, RepositoryRestConfiguration configuration, PersistentEntityToJsonSchemaConverter.ValueTypeSchemaPropertyCustomizerFactory customizerFactory) Creates a newPersistentEntityToJsonSchemaConverter
for the givenPersistentEntities
andResourceMappings
. -
Method Summary
Modifier and TypeMethodDescriptionConverts the given type into aJsonSchema
instance.convert
(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) boolean
matches
(TypeDescriptor sourceType, TypeDescriptor targetType)
-
Constructor Details
-
PersistentEntityToJsonSchemaConverter
public PersistentEntityToJsonSchemaConverter(PersistentEntities entities, Associations associations, MessageResolver resolver, com.fasterxml.jackson.databind.ObjectMapper objectMapper, RepositoryRestConfiguration configuration, PersistentEntityToJsonSchemaConverter.ValueTypeSchemaPropertyCustomizerFactory customizerFactory) Creates a newPersistentEntityToJsonSchemaConverter
for the givenPersistentEntities
andResourceMappings
.- Parameters:
entities
- must not be null.associations
- must not be null.resolver
- must not be null.objectMapper
- must not be null.configuration
- must not be null.customizerFactory
- must not be null.
-
-
Method Details
-
matches
- Specified by:
matches
in interfaceConditionalConverter
-
getConvertibleTypes
- Specified by:
getConvertibleTypes
in interfaceGenericConverter
-
convert
Converts the given type into aJsonSchema
instance.- Parameters:
domainType
- must not be null.- Returns:
-
convert
- Specified by:
convert
in interfaceGenericConverter
-