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.sail.config;
07:
08: /**
09: * @author Arjohn Kampman
10: */
11: public interface DelegatingSailImplConfig extends SailImplConfig {
12:
13: public SailImplConfig getDelegate();
14: }
|