use of org.apache.jackrabbit.core.version.NodeStateEx in project jackrabbit by apache.
the class VersionManagerImpl method doneMerge.
/**
* {@inheritDoc}
*/
public void doneMerge(String absPath, Version version) throws RepositoryException {
NodeStateEx state = getNodeState(absPath, ItemValidator.CHECK_LOCK | ItemValidator.CHECK_PENDING_CHANGES_ON_NODE | ItemValidator.CHECK_HOLD, Permission.VERSION_MNGMT);
finishMerge(state, version, false);
}
Aggregations