Package net.fortytwo.linkeddata.dereferencers

Examples of net.fortytwo.linkeddata.dereferencers.HTTPURIDereferencer


     */
    public static LinkedDataCache createDefault(final Sail sail) throws RippleException {
        LinkedDataCache cache = new LinkedDataCache(sail);

        // Add URI dereferencers.
        HTTPURIDereferencer hdref = new HTTPURIDereferencer(cache);
        for (String x : NON_RDF_EXTENSIONS) {
            hdref.blackListExtension(x);
        }
        cache.addDereferencer("http", hdref);

        cache.addDereferencer("file", new FileURIDereferencer());
        cache.addDereferencer("jar", new JarURIDereferencer());
View Full Code Here

TOP

Related Classes of net.fortytwo.linkeddata.dereferencers.HTTPURIDereferencer

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.