List of usage examples for com.liferay.portal.kernel.repository.model Folder getUserName
@Override
public String getUserName();
From source file:com.liferay.document.library.internal.atom.FolderAtomCollectionAdapter.java
License:Open Source License
@Override public List<String> getEntryAuthors(Folder folder) { List<String> authors = new ArrayList<>(); authors.add(folder.getUserName()); return authors; }
From source file:com.liferay.portlet.documentlibrary.atom.FolderAtomCollectionAdapter.java
License:Open Source License
public List<String> getEntryAuthors(Folder folder) { List<String> authors = new ArrayList<String>(); authors.add(folder.getUserName()); return authors; }