List of usage examples for com.liferay.portal.kernel.repository DocumentRepository getFoldersCount
public int getFoldersCount(long parentFolderId, int status, boolean includeMountfolders) throws PortalException;
From source file:com.liferay.document.library.internal.trash.DLBaseTrashHandler.java
License:Open Source License
@Override public int getTrashContainerModelsCount(long classPK) throws PortalException { DocumentRepository documentRepository = getDocumentRepository(classPK); return documentRepository.getFoldersCount(classPK, WorkflowConstants.STATUS_IN_TRASH, false); }