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.config;
07:
08: /**
09: * @author Herko ter Horst
10: */
11: public interface DelegatingRepositoryImplConfig extends
12: RepositoryImplConfig {
13:
14: public RepositoryImplConfig getDelegate();
15: }
|