DATAGRAPH-340 - Added shutdown() method to GraphDatabase interface.

Original pull request: #133.
This commit is contained in:
Michael Hunger
2013-10-15 12:40:18 +02:00
committed by Oliver Gierke
parent 62498f4b4d
commit 259d0ac9c7
2 changed files with 3 additions and 0 deletions

View File

@@ -131,4 +131,6 @@ public interface GraphDatabase {
TransactionManager getTransactionManager();
Transaction beginTx();
void shutdown();
}

View File

@@ -263,6 +263,7 @@ public class DelegatingGraphDatabase implements GraphDatabase {
return resultConverter;
}
@Override
public void shutdown() {
delegate.shutdown();
}