use of org.apache.jena.riot.system.stream.LocatorHTTP in project jena by apache.
the class TestStreamManager method beforeClass.
@BeforeClass
public static void beforeClass() {
streamMgrStd = StreamManager.get();
streamMgrDir = new StreamManager();
// Not current directory.
streamMgrDir.addLocator(new LocatorFile(directory));
streamMgrDir.addLocator(new LocatorHTTP());
streamMgrHere = new StreamManager();
// Not current directory.
streamMgrHere.addLocator(new LocatorFile());
streamMgrHere.addLocator(new LocatorHTTP());
streamMgrNull = new StreamManager();
}
Aggregations