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

org.everit.json.schema.loader.SchemaClient Maven / Gradle / Ivy

Go to download

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

The newest version!
package org.everit.json.schema.loader;

import java.io.InputStream;
import java8.util.function.Function;

/**
 * This interface is used by {@link SchemaLoader} to fetch the contents denoted by remote JSON
 * pointer.
 * 

* Implementations are expected to support the HTTP/1.1 protocol, the support of other protocols is * optional. */ public abstract class SchemaClient { public InputStream apply(final String url) { return get(url); } /** * Returns a stream to be used for reading the remote content (response body) of the URL. In the * case of a HTTP URL, implementations are expected send HTTP GET requests and the response is * expected to be represented in UTF-8 character set. * * @param url * the URL of the remote resource * @return the input stream of the response * @throws org.everit.json.schema.combatibility.UncheckedIOException * if an IO error occurs. */ public abstract InputStream get(String url); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy