Last active
July 26, 2016 19:44
-
-
Save kimakunc/30898603a1fd77d6d0341f0ec0d3e345 to your computer and use it in GitHub Desktop.
Liferay 6.2 DL Folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private Folder getDLFolder(ThemeDisplay themeDisplay, String folderName) throws PortalException, SystemException { | |
long scopeGroupId = themeDisplay.getScopeGroupId(); | |
Folder folder = DLAppLocalServiceUtil.getFolder(scopeGroupId, 0, folderName); | |
if (folder != null) { | |
return folder; | |
} else { | |
throw new NoSuchFolderException(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment