/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.document.library.internal.exportimport.data.handler; import com.liferay.document.library.kernel.exception.NoSuchFolderException; import com.liferay.document.library.kernel.model.DLFolder; import com.liferay.document.library.kernel.service.DLFolderLocalServiceUtil; import com.liferay.portal.kernel.dao.orm.QueryUtil; import com.liferay.portal.kernel.repository.model.Folder; import com.liferay.portal.repository.liferayrepository.model.LiferayFolder; import com.liferay.portlet.documentlibrary.util.RepositoryModelUtil; import java.util.List; /** * @author Alexander Chow */ public class FolderUtil { public static Folder fetchByR_P_N( long groupId, long parentFolderId, String name) { DLFolder dlFolder = DLFolderLocalServiceUtil.fetchFolder( groupId, parentFolderId, name); if (dlFolder == null) { return null; } return new LiferayFolder(dlFolder); } public static Folder fetchByUUID_R(String uuid, long repositoryId) { DLFolder dlFolder = DLFolderLocalServiceUtil.fetchFolder( uuid, repositoryId); if (dlFolder == null) { return null; } return new LiferayFolder(dlFolder); } public static Folder findByPrimaryKey(long folderId) throws NoSuchFolderException { DLFolder dlFolder = DLFolderLocalServiceUtil.fetchFolder(folderId); return new LiferayFolder(dlFolder); } /** * @deprecated As of 1.1.0, with no direct replacement */ @Deprecated public static List<Folder> findByR_P( long repositoryId, long parentFolderId) { List<DLFolder> dlFolders = DLFolderLocalServiceUtil.getFolders( repositoryId, parentFolderId, true); return RepositoryModelUtil.toFolders(dlFolders); } /** * @deprecated As of 1.1.0, with no direct replacement */ @Deprecated public static List<Folder> findByRepositoryId(long repositoryId) { List<DLFolder> dlFolders = DLFolderLocalServiceUtil.getRepositoryFolders( repositoryId, QueryUtil.ALL_POS, QueryUtil.ALL_POS); return RepositoryModelUtil.toFolders(dlFolders); } }