01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.repository.manager;
07:
08: import org.openrdf.repository.config.RepositoryImplConfigBase;
09:
10: /**
11: * @author Arjohn Kampman
12: */
13: public class SystemRepositoryConfig extends RepositoryImplConfigBase {
14:
15: public SystemRepositoryConfig() {
16: super(SystemRepository.REPOSITORY_TYPE);
17: }
18: }
|