Index: org/apache/jackrabbit/core/jndi/BindableRepository.java =================================================================== --- org/apache/jackrabbit/core/jndi/BindableRepository.java (revision 294807) +++ org/apache/jackrabbit/core/jndi/BindableRepository.java (working copy) @@ -228,4 +228,12 @@ throw new IOException(re.getMessage()); } } + + /** + * Delegated to the underlying repository instance. + * {@inheritDoc} + */ + public void shutdown() { + ((RepositoryImpl) delegatee).shutdown() ; + } }