List of usage examples for com.liferay.portal.kernel.repository Repository verifyFileEntryLock
public boolean verifyFileEntryLock(long fileEntryId, String lockUuid) throws PortalException;
From source file:com.liferay.portlet.documentlibrary.service.impl.DLAppServiceImpl.java
License:Open Source License
public boolean verifyFileEntryLock(long repositoryId, long fileEntryId, String lockUuid) throws PortalException, SystemException { Repository repository = getRepository(repositoryId); return repository.verifyFileEntryLock(fileEntryId, lockUuid); }