List of usage examples for com.liferay.portal.kernel.repository.capabilities TemporaryFileEntriesScope getFolderPath
public String getFolderPath()
From source file:com.liferay.document.library.internal.repository.capabilities.TemporaryFileEntriesCapabilityImpl.java
License:Open Source License
private String _getFolderPath(TemporaryFileEntriesScope temporaryFileEntriesScope) { StringBundler sb = new StringBundler(7); sb.append(_FOLDER_NAME_TEMP);/*from www . j a v a2s . c o m*/ sb.append(StringPool.SLASH); sb.append(temporaryFileEntriesScope.getCallerUuid()); sb.append(StringPool.SLASH); sb.append(temporaryFileEntriesScope.getUserId()); sb.append(StringPool.SLASH); sb.append(temporaryFileEntriesScope.getFolderPath()); return sb.toString(); }