MT - fix delete node (to ensure tenant-specific re-index)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8143 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2008-01-31 16:23:09 +00:00
parent 5bdd6a9c8b
commit 694396d5ed
4 changed files with 46 additions and 14 deletions

View File

@@ -24,6 +24,7 @@
*/
package org.alfresco.repo.tenant;
import org.alfresco.service.cmr.repository.ChildAssociationRef;
import org.alfresco.service.cmr.repository.NodeRef;
import org.alfresco.service.cmr.repository.NodeService;
import org.alfresco.service.cmr.repository.StoreRef;
@@ -52,6 +53,11 @@ public class SingleTServiceImpl implements TenantService
return storeRef;
}
public ChildAssociationRef getName(ChildAssociationRef childAssocRef)
{
return childAssocRef;
}
public StoreRef getName(String username, StoreRef storeRef)
{
return storeRef;
@@ -82,6 +88,11 @@ public class SingleTServiceImpl implements TenantService
return storeRef;
}
public ChildAssociationRef getBaseName(ChildAssociationRef childAssocRef)
{
return childAssocRef;
}
public String getBaseName(String name)
{
return name;