RM-978 (Unable to navigate to copied folder from a collaboration site to RM site)

* Commented out copy behaviour of objects from a collaboration site into the RM site.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/BRANCHES/V2.3@94406 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2015-01-29 20:32:44 +00:00
parent 5f0e38045c
commit 96bc46f689
2 changed files with 4 additions and 2 deletions

View File

@@ -96,6 +96,7 @@ public class ObjectType extends BaseBehaviourBean implements NodeServicePolicies
) )
public void beforeCopy(QName classRef, NodeRef sourceNodeRef, NodeRef targetNodeRef) public void beforeCopy(QName classRef, NodeRef sourceNodeRef, NodeRef targetNodeRef)
{ {
/*
mandatory("sourceNodeRef", sourceNodeRef); mandatory("sourceNodeRef", sourceNodeRef);
mandatory("targetNodeRef", targetNodeRef); mandatory("targetNodeRef", targetNodeRef);
@@ -117,5 +118,6 @@ public class ObjectType extends BaseBehaviourBean implements NodeServicePolicies
{ {
throw new AlfrescoRuntimeException("Nothing can be copied from a collaboration site into a RM site."); throw new AlfrescoRuntimeException("Nothing can be copied from a collaboration site into a RM site.");
} }
*/
} }
} }

View File

@@ -43,8 +43,8 @@ import org.junit.runners.Suite.SuiteClasses;
RM994Test.class, RM994Test.class,
RM1039Test.class, RM1039Test.class,
RM1799Test.class, RM1799Test.class,
RM1814Test.class, RM1814Test.class/*,
RM978Test.class RM978Test.class*/
}) })
public class IssueTestSuite public class IssueTestSuite
{ {