Package org.infinispan.schematic.internal

Examples of org.infinispan.schematic.internal.InMemoryDocumentLibrary


    private SchemaDocumentCache schemaDocs;
    private SchemaLibrary.Results results;

    @BeforeClass
    public static void beforeAll() throws Exception {
        docs = new InMemoryDocumentLibrary("tests");
        docs.put("http://json-schema.org/draft-03/schema#", Json.read(resource("json/schema/draft-03/schema.json")));
        docs.put("json/spec-example-doc.json", Json.read(resource("json/spec-example-doc.json")));
        docs.put("json/schema/spec-example.json", Json.read(resource("json/schema/spec-example.json")));
        docs.put("json/sample-repo-config.json", Json.read(resource("json/sample-repo-config.json")));
        docs.put("json/empty.json", Json.read(resource("json/empty.json")));
View Full Code Here

TOP

Related Classes of org.infinispan.schematic.internal.InMemoryDocumentLibrary

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.