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.repository;
07:
08: /**
09: * Main interface for repositories that wrap another repository.
10: */
11: public interface DelegatingRepository extends Repository {
12:
13: public Repository getDelegate();
14:
15: public void setDelegate(Repository delegate);
16: }
|