Example usage for com.liferay.portal.kernel.repository.model Folder getUserName

List of usage examples for com.liferay.portal.kernel.repository.model Folder getUserName

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.repository.model Folder getUserName.

Prototype

@Override
    public String getUserName();

Source Link

Usage

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;
}