Package org.apache.marmotta.ldpath.backend.linkeddata

Examples of org.apache.marmotta.ldpath.backend.linkeddata.LDPersistentBackend



            File tmpDir = null;
            SesameRepositoryBackend backend;
            if(cmd.hasOption("store")) {
                backend = new LDPersistentBackend(new File(cmd.getOptionValue("store")));
            } else {
                tmpDir = Files.createTempDir();

                backend = new LDPersistentBackend(tmpDir);
            }

            Resource context = null;
            if(cmd.hasOption("context")) {
                context = backend.getRepository().getValueFactory().createURI(cmd.getOptionValue("context"));
View Full Code Here

TOP

Related Classes of org.apache.marmotta.ldpath.backend.linkeddata.LDPersistentBackend

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.