Skip to content

Instantly share code, notes, and snippets.

@kimakunc
Last active July 26, 2016 19:44
Show Gist options
  • Save kimakunc/30898603a1fd77d6d0341f0ec0d3e345 to your computer and use it in GitHub Desktop.
Save kimakunc/30898603a1fd77d6d0341f0ec0d3e345 to your computer and use it in GitHub Desktop.
Liferay 6.2 DL Folder
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