package com.fasterxml.jackson.databind.jsonFormatVisitors; import com.fasterxml.jackson.databind.JavaType; import com.fasterxml.jackson.databind.JsonMappingException; /** * Marker interface for schema-aware serializers. */ public interface JsonFormatVisitable { /** * Get the representation of the schema to which this serializer will conform. * @param typeHint Type of element (entity like property) being visited * * @returns <a href="http://json-schema.org/">Json-schema</a> for this serializer. */ public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint) throws JsonMappingException; }