|
|
|
@@ -2,7 +2,7 @@
|
|
|
|
|
* #%L
|
|
|
|
|
* Alfresco Repository
|
|
|
|
|
* %%
|
|
|
|
|
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
|
|
|
|
* Copyright (C) 2005 - 2025 Alfresco Software Limited
|
|
|
|
|
* %%
|
|
|
|
|
* This file is part of the Alfresco software.
|
|
|
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
|
|
@@ -40,6 +40,10 @@ import java.util.ResourceBundle.Control;
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
import java.util.Stack;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
|
import org.springframework.extensions.surf.util.I18NUtil;
|
|
|
|
|
|
|
|
|
|
import org.alfresco.model.ContentModel;
|
|
|
|
|
import org.alfresco.query.CannedQueryFactory;
|
|
|
|
|
import org.alfresco.query.CannedQueryResults;
|
|
|
|
@@ -94,9 +98,6 @@ import org.alfresco.util.Pair;
|
|
|
|
|
import org.alfresco.util.ParameterCheck;
|
|
|
|
|
import org.alfresco.util.SearchLanguageConversion;
|
|
|
|
|
import org.alfresco.util.registry.NamedObjectRegistry;
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
|
import org.springframework.extensions.surf.util.I18NUtil;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Implementation of the file/folder-specific service.
|
|
|
|
@@ -108,31 +109,27 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
private static final String CANNED_QUERY_FILEFOLDER_LIST = "fileFolderGetChildrenCannedQueryFactory";
|
|
|
|
|
|
|
|
|
|
/** Shallow search for files and folders with a name pattern */
|
|
|
|
|
private static final String XPATH_QUERY_SHALLOW_ALL =
|
|
|
|
|
"./*" +
|
|
|
|
|
private static final String XPATH_QUERY_SHALLOW_ALL = "./*" +
|
|
|
|
|
"[like(@cm:name, $cm:name, false)" +
|
|
|
|
|
" and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" +
|
|
|
|
|
" and (subtypeOf('" + ContentModel.TYPE_FOLDER + "') or subtypeOf('" + ContentModel.TYPE_CONTENT + "')" +
|
|
|
|
|
" or subtypeOf('" + ContentModel.TYPE_LINK + "'))]";
|
|
|
|
|
|
|
|
|
|
/** Deep search for files and folders with a name pattern */
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_ALL =
|
|
|
|
|
".//*" +
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_ALL = ".//*" +
|
|
|
|
|
"[like(@cm:name, $cm:name, false)" +
|
|
|
|
|
" and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" +
|
|
|
|
|
" and (subtypeOf('" + ContentModel.TYPE_FOLDER + "') or subtypeOf('" + ContentModel.TYPE_CONTENT + "')" +
|
|
|
|
|
" or subtypeOf('" + ContentModel.TYPE_LINK + "'))]";
|
|
|
|
|
|
|
|
|
|
/** Deep search for folders with a name pattern */
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_FOLDERS =
|
|
|
|
|
".//*" +
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_FOLDERS = ".//*" +
|
|
|
|
|
"[like(@cm:name, $cm:name, false)" +
|
|
|
|
|
" and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" +
|
|
|
|
|
" and (subtypeOf('" + ContentModel.TYPE_FOLDER + "'))]";
|
|
|
|
|
|
|
|
|
|
/** Deep search for files with a name pattern */
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_FILES =
|
|
|
|
|
".//*" +
|
|
|
|
|
private static final String XPATH_QUERY_DEEP_FILES = ".//*" +
|
|
|
|
|
"[like(@cm:name, $cm:name, false)" +
|
|
|
|
|
" and not (subtypeOf('" + ContentModel.TYPE_SYSTEM_FOLDER + "'))" +
|
|
|
|
|
" and (subtypeOf('" + ContentModel.TYPE_CONTENT + "')" +
|
|
|
|
@@ -245,17 +242,17 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
return preserveAuditableData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void init()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Helper method to convert node reference instances to file info
|
|
|
|
|
*
|
|
|
|
|
* @param nodeRefs the node references
|
|
|
|
|
* @param nodeRefs
|
|
|
|
|
* the node references
|
|
|
|
|
* @return Return a list of file info
|
|
|
|
|
* @throws InvalidTypeException if the node is not a valid type
|
|
|
|
|
* @throws InvalidTypeException
|
|
|
|
|
* if the node is not a valid type
|
|
|
|
|
*/
|
|
|
|
|
private List<FileInfo> toFileInfo(List<NodeRef> nodeRefs) throws InvalidTypeException
|
|
|
|
|
{
|
|
|
|
@@ -414,23 +411,25 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
PermissionCheckedCollectionMixin.create(nodeInfos, nodeRefs);
|
|
|
|
|
|
|
|
|
|
return new PagingResults<FileInfo>()
|
|
|
|
|
{
|
|
|
|
|
return new PagingResults<FileInfo>() {
|
|
|
|
|
@Override
|
|
|
|
|
public String getQueryExecutionId()
|
|
|
|
|
{
|
|
|
|
|
return results.getQueryExecutionId();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<FileInfo> getPage()
|
|
|
|
|
{
|
|
|
|
|
return nodeInfos;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean hasMoreItems()
|
|
|
|
|
{
|
|
|
|
|
return results.hasMoreItems();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Pair<Integer, Integer> getTotalResultCount()
|
|
|
|
|
{
|
|
|
|
@@ -440,8 +439,8 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* (non-Javadoc)
|
|
|
|
|
* @see org.alfresco.service.cmr.model.FileFolderService#list(org.alfresco.service.cmr.repository.NodeRef, boolean, boolean, java.util.Set, org.alfresco.service.cmr.model.PagingSortRequest)
|
|
|
|
|
*/
|
|
|
|
|
*
|
|
|
|
|
* @see org.alfresco.service.cmr.model.FileFolderService#list(org.alfresco.service.cmr.repository.NodeRef, boolean, boolean, java.util.Set, org.alfresco.service.cmr.model.PagingSortRequest) */
|
|
|
|
|
@Auditable(parameters = {"contextNodeRef", "files", "folders", "ignoreQNames", "sortProps", "pagingRequest"})
|
|
|
|
|
@Override
|
|
|
|
|
@Extend(traitAPI = FileFolderServiceTrait.class, extensionAPI = FileFolderServiceExtension.class)
|
|
|
|
@@ -480,7 +479,6 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
return getPagingResults(pagingRequest, results);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@Extend(traitAPI = FileFolderServiceTrait.class, extensionAPI = FileFolderServiceExtension.class)
|
|
|
|
|
public PagingResults<FileInfo> list(NodeRef rootNodeRef, Set<QName> searchTypeQNames, Set<QName> ignoreAspectQNames, List<Pair<QName, Boolean>> sortProps, PagingRequest pagingRequest)
|
|
|
|
@@ -713,9 +711,7 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Performs a full search, but doesn't translate the node references into
|
|
|
|
|
* file info objects. This allows {@link #checkExists(NodeRef, String)} to
|
|
|
|
|
* bypass the retrieval of node properties.
|
|
|
|
|
* Performs a full search, but doesn't translate the node references into file info objects. This allows {@link #checkExists(NodeRef, String)} to bypass the retrieval of node properties.
|
|
|
|
|
*/
|
|
|
|
|
private List<NodeRef> searchInternal(
|
|
|
|
|
NodeRef contextNodeRef,
|
|
|
|
@@ -896,24 +892,21 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A deep version of listSimple. Which recursively walks down the tree from a given starting point, returning
|
|
|
|
|
* the node refs of files or folders found along the way.
|
|
|
|
|
* A deep version of listSimple. Which recursively walks down the tree from a given starting point, returning the node refs of files or folders found along the way.
|
|
|
|
|
* <p>
|
|
|
|
|
* The folder filter is called for each sub-folder to determine whether to search in that sub-folder, should a subfolder be excluded
|
|
|
|
|
* then all its chidren are excluded as well.
|
|
|
|
|
* The folder filter is called for each sub-folder to determine whether to search in that sub-folder, should a subfolder be excluded then all its chidren are excluded as well.
|
|
|
|
|
*
|
|
|
|
|
* @param contextNodeRef the starting point.
|
|
|
|
|
* @param files return nodes of type files.
|
|
|
|
|
* @param folders return nodes of type folders.
|
|
|
|
|
* @param folderFilter filter controls which folders to search. If null then all subfolders are searched.
|
|
|
|
|
* @param contextNodeRef
|
|
|
|
|
* the starting point.
|
|
|
|
|
* @param files
|
|
|
|
|
* return nodes of type files.
|
|
|
|
|
* @param folders
|
|
|
|
|
* return nodes of type folders.
|
|
|
|
|
* @param folderFilter
|
|
|
|
|
* filter controls which folders to search. If null then all subfolders are searched.
|
|
|
|
|
* @return list of node references
|
|
|
|
|
*/
|
|
|
|
|
/* <p>
|
|
|
|
|
* MER: I've added this rather than changing listSimple to minimise the risk of breaking
|
|
|
|
|
* the existing code. This is a quick performance improvement between using
|
|
|
|
|
* XPath which is awful or adding new methods to the NodeService/DB This is also a dangerous method in that it can return a
|
|
|
|
|
* lot of data and take a long time.
|
|
|
|
|
*/
|
|
|
|
|
/* <p> MER: I've added this rather than changing listSimple to minimise the risk of breaking the existing code. This is a quick performance improvement between using XPath which is awful or adding new methods to the NodeService/DB This is also a dangerous method in that it can return a lot of data and take a long time. */
|
|
|
|
|
private List<NodeRef> listSimpleDeep(NodeRef contextNodeRef, boolean files, boolean folders, SubFolderFilter folderFilter)
|
|
|
|
|
{
|
|
|
|
|
if (logger.isDebugEnabled())
|
|
|
|
@@ -986,7 +979,6 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (logger.isDebugEnabled())
|
|
|
|
|
{
|
|
|
|
|
logger.debug("searchSimpleDeep finished size:" + result.size());
|
|
|
|
@@ -1045,7 +1037,8 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
/**
|
|
|
|
|
* Implements both move and copy behaviour
|
|
|
|
|
*
|
|
|
|
|
* @param move true to move, otherwise false to copy
|
|
|
|
|
* @param move
|
|
|
|
|
* true to move, otherwise false to copy
|
|
|
|
|
*/
|
|
|
|
|
private FileInfo moveOrCopy(NodeRef sourceNodeRef, NodeRef sourceParentRef, NodeRef targetParentRef, String newName, boolean move) throws FileExistsException, FileNotFoundException
|
|
|
|
|
{
|
|
|
|
@@ -1259,7 +1252,8 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
*
|
|
|
|
|
* TODO: Replace this with a more formal means of identifying "system" folders (i.e. aspect or UUID)
|
|
|
|
|
*
|
|
|
|
|
* @param nodeRef node to check
|
|
|
|
|
* @param nodeRef
|
|
|
|
|
* node to check
|
|
|
|
|
* @return true => system folder path based node
|
|
|
|
|
*/
|
|
|
|
|
private boolean isSystemPath(NodeRef nodeRef)
|
|
|
|
@@ -1320,7 +1314,7 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
catch (DuplicateChildNodeNameException e)
|
|
|
|
|
{
|
|
|
|
|
throw new FileExistsException(parentNodeRef, name);
|
|
|
|
|
throw new FileExistsException(parentNodeRef, name, typeQName.getLocalName());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NodeRef nodeRef = assocRef.getChildRef();
|
|
|
|
@@ -1351,12 +1345,14 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
/**
|
|
|
|
|
* Checks for the presence of, and creates as necessary, the folder structure in the provided path.
|
|
|
|
|
* <p>
|
|
|
|
|
* An empty path list is not allowed as it would be impossible to necessarily return file info
|
|
|
|
|
* for the parent node - it might not be a folder node.
|
|
|
|
|
* @param parentNodeRef the node under which the path will be created
|
|
|
|
|
* @param pathElements the folder name path to create - may not be empty
|
|
|
|
|
* @param folderTypeQName the types of nodes to create. This must be a valid subtype of
|
|
|
|
|
* {@link org.alfresco.model.ContentModel#TYPE_FOLDER they folder type}.
|
|
|
|
|
* An empty path list is not allowed as it would be impossible to necessarily return file info for the parent node - it might not be a folder node.
|
|
|
|
|
*
|
|
|
|
|
* @param parentNodeRef
|
|
|
|
|
* the node under which the path will be created
|
|
|
|
|
* @param pathElements
|
|
|
|
|
* the folder name path to create - may not be empty
|
|
|
|
|
* @param folderTypeQName
|
|
|
|
|
* the types of nodes to create. This must be a valid subtype of {@link org.alfresco.model.ContentModel#TYPE_FOLDER they folder type}.
|
|
|
|
|
* @return Returns the info of the last folder in the path.
|
|
|
|
|
* @deprecated Use FileFolderUtil.makeFolders rather than directly accessing this implementation class.
|
|
|
|
|
*/
|
|
|
|
@@ -1368,12 +1364,14 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
/**
|
|
|
|
|
* Checks for the presence of, and creates as necessary, the folder structure in the provided path.
|
|
|
|
|
* <p>
|
|
|
|
|
* An empty path list is not allowed as it would be impossible to necessarily return file info
|
|
|
|
|
* for the parent node - it might not be a folder node.
|
|
|
|
|
* @param parentNodeRef the node under which the path will be created
|
|
|
|
|
* @param pathElements the folder name path to create - may not be empty
|
|
|
|
|
* @param folderTypeQName the types of nodes to create. This must be a valid subtype of
|
|
|
|
|
* {@link org.alfresco.model.ContentModel#TYPE_FOLDER they folder type}.
|
|
|
|
|
* An empty path list is not allowed as it would be impossible to necessarily return file info for the parent node - it might not be a folder node.
|
|
|
|
|
*
|
|
|
|
|
* @param parentNodeRef
|
|
|
|
|
* the node under which the path will be created
|
|
|
|
|
* @param pathElements
|
|
|
|
|
* the folder name path to create - may not be empty
|
|
|
|
|
* @param folderTypeQName
|
|
|
|
|
* the types of nodes to create. This must be a valid subtype of {@link org.alfresco.model.ContentModel#TYPE_FOLDER they folder type}.
|
|
|
|
|
* @return Returns the info of the last folder in the path.
|
|
|
|
|
* @deprecated Use FileFolderUtil.makeFolders rather than directly accessing this implementation class.
|
|
|
|
|
*/
|
|
|
|
@@ -1386,17 +1384,17 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
* Get the file or folder information from the root down to and including the node provided.
|
|
|
|
|
* <ul>
|
|
|
|
|
* <li>The root node can be of any type and is not included in the path list.</li>
|
|
|
|
|
* <li>Only the primary path is considered. If the target node is not a descendant of the
|
|
|
|
|
* root along purely primary associations, then an exception is generated.</li>
|
|
|
|
|
* <li>Only the primary path is considered. If the target node is not a descendant of the root along purely primary associations, then an exception is generated.</li>
|
|
|
|
|
* <li>If an invalid type is encountered along the path, then an exception is generated.</li>
|
|
|
|
|
* </ul>
|
|
|
|
|
*
|
|
|
|
|
* @param rootNodeRef the start of the returned path, or null if the <b>store</b> root
|
|
|
|
|
* node must be assumed.
|
|
|
|
|
* @param nodeRef a reference to the file or folder
|
|
|
|
|
* @return Returns a list of file/folder infos from the root (excluded) down to and
|
|
|
|
|
* including the destination file or folder
|
|
|
|
|
* @throws FileNotFoundException if the node could not be found
|
|
|
|
|
* @param rootNodeRef
|
|
|
|
|
* the start of the returned path, or null if the <b>store</b> root node must be assumed.
|
|
|
|
|
* @param nodeRef
|
|
|
|
|
* a reference to the file or folder
|
|
|
|
|
* @return Returns a list of file/folder infos from the root (excluded) down to and including the destination file or folder
|
|
|
|
|
* @throws FileNotFoundException
|
|
|
|
|
* if the node could not be found
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<FileInfo> getNamePath(NodeRef rootNodeRef, NodeRef nodeRef) throws FileNotFoundException
|
|
|
|
@@ -1431,8 +1429,7 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
}
|
|
|
|
|
// we found the root and expect to be building the path up
|
|
|
|
|
// Run as system as the user could not have access to all folders in the path, see ALF-13816
|
|
|
|
|
FileInfo pathInfo = AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<FileInfo>()
|
|
|
|
|
{
|
|
|
|
|
FileInfo pathInfo = AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<FileInfo>() {
|
|
|
|
|
public FileInfo doWork() throws Exception
|
|
|
|
|
{
|
|
|
|
|
return toFileInfo(childNodeRef, true);
|
|
|
|
@@ -1473,17 +1470,17 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
* Get the file or folder names from the root down to and including the node provided.
|
|
|
|
|
* <ul>
|
|
|
|
|
* <li>The root node can be of any type and is not included in the path list.</li>
|
|
|
|
|
* <li>Only the primary path is considered. If the target node is not a descendant of the
|
|
|
|
|
* root along purely primary associations, then an exception is generated.</li>
|
|
|
|
|
* <li>Only the primary path is considered. If the target node is not a descendant of the root along purely primary associations, then an exception is generated.</li>
|
|
|
|
|
* <li>If an invalid type is encountered along the path, then an exception is generated.</li>
|
|
|
|
|
* </ul>
|
|
|
|
|
*
|
|
|
|
|
* @param rootNodeRef the start of the returned path, or null if the <b>store</b> root
|
|
|
|
|
* node must be assumed.
|
|
|
|
|
* @param nodeRef a reference to the file or folder
|
|
|
|
|
* @return Returns a list of file/folder names from the root (excluded) down to and
|
|
|
|
|
* including the destination file or folder
|
|
|
|
|
* @throws FileNotFoundException if the node could not be found
|
|
|
|
|
* @param rootNodeRef
|
|
|
|
|
* the start of the returned path, or null if the <b>store</b> root node must be assumed.
|
|
|
|
|
* @param nodeRef
|
|
|
|
|
* a reference to the file or folder
|
|
|
|
|
* @return Returns a list of file/folder names from the root (excluded) down to and including the destination file or folder
|
|
|
|
|
* @throws FileNotFoundException
|
|
|
|
|
* if the node could not be found
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public List<String> getNameOnlyPath(NodeRef rootNodeRef, final NodeRef nodeRef) throws FileNotFoundException
|
|
|
|
@@ -1498,8 +1495,7 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
final NodeRef rNodeRef = rootNodeRef;
|
|
|
|
|
final ArrayList<String> results = new ArrayList<String>(10);
|
|
|
|
|
// Run as system as the user could not have access to all folders in the path, see ALF-13816
|
|
|
|
|
AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<Void>()
|
|
|
|
|
{
|
|
|
|
|
AuthenticationUtil.runAs(new AuthenticationUtil.RunAsWork<Void>() {
|
|
|
|
|
public Void doWork() throws Exception
|
|
|
|
|
{
|
|
|
|
|
// get the primary path
|
|
|
|
@@ -1554,7 +1550,8 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
{
|
|
|
|
|
throw (FileNotFoundException) e.getCause();
|
|
|
|
|
}
|
|
|
|
|
else throw e;
|
|
|
|
|
else
|
|
|
|
|
throw e;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@@ -1693,7 +1690,8 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
Visibility webDavVisibility = isHidden ? Visibility.NotVisible : Visibility.Visible;
|
|
|
|
|
for (Client client : hiddenAspect.getClients())
|
|
|
|
|
{
|
|
|
|
|
Visibility clientVisibility = client == FileFilterMode.getClient() ? webDavVisibility : hiddenAspect
|
|
|
|
|
Visibility clientVisibility = client == FileFilterMode.getClient() ? webDavVisibility
|
|
|
|
|
: hiddenAspect
|
|
|
|
|
.getVisibility(client, nodeRef);
|
|
|
|
|
if (clientVisibility != Visibility.Visible)
|
|
|
|
|
{
|
|
|
|
@@ -1815,7 +1813,6 @@ public class FileFolderServiceImpl extends AbstractBaseCopyService implements Fi
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public PagingResults<FileInfo> list(NodeRef contextNodeRef,
|
|
|
|
|
boolean files,
|
|
|
|
|
boolean folders,
|
|
|
|
|