* @since JCR 2.0
*/
public synchronized RetentionManager getRetentionManager()
throws UnsupportedRepositoryOperationException, RepositoryException {
if (retentionManager == null) {
retentionManager = new RetentionManagerImpl(this);
}
return retentionManager;
}