All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.harrel.jsonschema.Annotation Maven / Gradle / Ivy

There is a newer version: 1.8.1
Show newest version
package dev.harrel.jsonschema;

/**
 * {@code Annotation} class represents collected annotation.
 */
public class Annotation extends EvaluationItem {
    private final Object annotation;

    Annotation(String evaluationPath, String schemaLocation, String instanceLocation, String keyword, Object annotation) {
        super(evaluationPath, schemaLocation, instanceLocation, keyword);
        this.annotation = annotation;
    }

    /**
     * Returns collected annotation.
     */
    public Object getAnnotation() {
        return annotation;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy