com.fasterxml.jackson.module.jsonSchema.factories.NullVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-module-jsonSchema Show documentation
Show all versions of jackson-module-jsonSchema Show documentation
Add-on module for Jackson (http://jackson.codehaus.org) to support
JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 generation.
The newest version!
package com.fasterxml.jackson.module.jsonSchema.factories;
import com.fasterxml.jackson.databind.jsonFormatVisitors.JsonNullFormatVisitor;
import com.fasterxml.jackson.module.jsonSchema.types.NullSchema;
public class NullVisitor extends JsonNullFormatVisitor.Base
implements JsonSchemaProducer
{
protected final NullSchema schema;
public NullVisitor(NullSchema schema) {
this.schema = schema;
}
@Override
public NullSchema getSchema() {
return schema;
}
}