01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2006.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.nativerdf.lubm;
07:
08: import edu.lehigh.swat.bench.ubt.api.Repository;
09: import edu.lehigh.swat.bench.ubt.api.RepositoryFactory;
10:
11: /**
12: *
13: */
14: public class NativeRepositoryFactory extends RepositoryFactory {
15:
16: // implements RepositoryFactory.create()
17: @Override
18: public Repository create() {
19: return new NativeRepository();
20: }
21:
22: }
|