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

org.everit.json.schema.ReferenceSchema Maven / Gradle / Ivy

Go to download

Implementation of the JSON Schema Core Draft v4 specification built with the org.json API

There is a newer version: 1.5.1
Show newest version
/*
 * Copyright (C) 2011 Everit Kft. (http://www.everit.org)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.everit.json.schema;

/**
 * This class is used by {@link org.everit.json.schema.loader.SchemaLoader} to resolve JSON pointers
 * during the construction of the schema. This class has been made mutable to permit the loading of
 * recursive schemas.
 */
public class ReferenceSchema extends Schema {

  /**
   * Builder class for {@link ReferenceSchema}.
   */
  public static class Builder extends Schema.Builder {

    private ReferenceSchema retval;

    /**
     * This method caches its result, so multiple invocations will return referentially the same
     * {@link ReferenceSchema} instance.
     */
    @Override
    public ReferenceSchema build() {
      if (retval == null) {
        retval = new ReferenceSchema(this);
      }
      return retval;
    }

  }

  public static Builder builder() {
    return new Builder();
  }

  private Schema referredSchema;

  public ReferenceSchema(final Builder builder) {
    super(builder);
  }

  @Override
  public void validate(final Object subject) {
    if (referredSchema == null) {
      throw new IllegalStateException("referredSchema must be injected before validation");
    }
    referredSchema.validate(subject);
  }

  public Schema getReferredSchema() {
    return referredSchema;
  }

  /**
   * Called by {@link org.everit.json.schema.loader.SchemaLoader#load()} to set the referred root
   * schema after completing the loading process of the entire schema document.
   *
   * @param referredSchema
   *          the referred schema
   */
  public void setReferredSchema(final Schema referredSchema) {
    if (this.referredSchema != null) {
      throw new IllegalStateException("referredSchema can be injected only once");
    }
    this.referredSchema = referredSchema;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy