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

xpertss.json.schema.cfg.ValidationConfiguration Maven / Gradle / Ivy

The newest version!
package xpertss.json.schema.cfg;

import com.github.fge.Frozen;
import xpertss.json.schema.core.ref.JsonRef;
import xpertss.json.schema.library.Keyword;
import xpertss.json.schema.library.Library;
import com.github.fge.msgsimple.bundle.MessageBundle;
import com.google.common.collect.ImmutableMap;

import java.util.Map;

/**
 * Validation configuration (frozen instance)
 *
 * 

This allows you to configure the following aspects of validation:

* *
    *
  • add your own schema keywords via libraries, with an associated {@code * $schema} value;
  • *
  • whether to use {@code format};
  • *
  • what default keyword library should be used.
  • *
* *

The default configuration has both draft v4 and draft v3 libraries * preloaded, and {@code format} validation is enabled; the default library to * use is draft v4.

* * @see ValidationConfigurationBuilder * @see Keyword * @see Library */ public final class ValidationConfiguration implements Frozen { /** * Map of keyword libraries and their associated URIs * *

The URIs here are what is expected in {@code $schema}.

*/ final Map libraries; /** * Default keyword library to use * *

This is the library used when no {@code $schema} could be found in * a submitted/downloaded schema.

*/ final Library defaultLibrary; /** * Whether to use {@code format} in the resulting factory */ final boolean useFormat; /** * Cache size for processing validations */ final int cacheSize; /** * The set of syntax messages */ final MessageBundle syntaxMessages; /** * The set of validation messages */ final MessageBundle validationMessages; /** * Return a new thawed instance of the default configuration * * @return a new configuration builder * @see ValidationConfigurationBuilder#ValidationConfigurationBuilder() */ public static ValidationConfigurationBuilder newBuilder() { return new ValidationConfigurationBuilder(); } /** * Return a default, frozen configuration * * @return a new configuration */ public static ValidationConfiguration byDefault() { return newBuilder().freeze(); } /** * Build a new frozen configuration out of a thawed one * * @param builder the source configuration * @see ValidationConfigurationBuilder#freeze() */ ValidationConfiguration(ValidationConfigurationBuilder builder) { libraries = ImmutableMap.copyOf(builder.libraries); defaultLibrary = builder.defaultLibrary; useFormat = builder.useFormat; cacheSize = builder.cacheSize; syntaxMessages = builder.syntaxMessages; validationMessages = builder.validationMessages; } /** * Return the map of libraries for this configuration * * @return an immutable map */ public Map getLibraries() { return libraries; } /** * Return the default library to use * * @return a library */ public Library getDefaultLibrary() { return defaultLibrary; } /** * Whether {@code format} should be used * * @return {@code true} if the answer is yes */ public boolean getUseFormat() { return useFormat; } public int getCacheSize() { return cacheSize; } public MessageBundle getSyntaxMessages() { return syntaxMessages; } public MessageBundle getValidationMessages() { return validationMessages; } /** * Return a thawed instance out of this frozen configuration * * @return a {@link ValidationConfigurationBuilder} * @see ValidationConfigurationBuilder#ValidationConfigurationBuilder(ValidationConfiguration) */ @Override public ValidationConfigurationBuilder thaw() { return new ValidationConfigurationBuilder(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy