01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 1997-2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.repository;
07:
08: public interface DelegatingRepositoryConnection extends
09: RepositoryConnection {
10:
11: public RepositoryConnection getDelegate()
12: throws RepositoryException;
13:
14: public void setDelegate(RepositoryConnection delegate);
15: }
|