Fix for ALF-11177: "Cannot access folder where link for content is created via CMIS Workbench"

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@37321 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Steven Glover
2012-05-31 15:49:16 +00:00
parent b3f62c505c
commit 8e1e570c3c
2 changed files with 32 additions and 6 deletions

View File

@@ -579,6 +579,10 @@ public class AlfrescoCmisServiceImpl extends AbstractCmisService implements Alfr
{
// ignore invalid children
}
catch(CmisObjectNotFoundException e)
{
// ignore objects that have not been found (perhaps because their type is unknown to CMIS)
}
}
}
@@ -708,6 +712,10 @@ public class AlfrescoCmisServiceImpl extends AbstractCmisService implements Alfr
{
// ignore invalid children
}
catch(CmisObjectNotFoundException e)
{
// ignore objects that have not been found (perhaps because their type is unknown to CMIS)
}
}
}
@@ -973,6 +981,10 @@ public class AlfrescoCmisServiceImpl extends AbstractCmisService implements Alfr
{
// ignore invalid objects
}
catch(CmisObjectNotFoundException e)
{
// ignore objects that have not been found (perhaps because their type is unknown to CMIS)
}
}
}