RM-2130 (Check classification after method execution, filtering results where appropriate)

+review RM-94

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/DEV/ENFORCE@107257 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2015-06-26 16:00:26 +00:00
parent b1e8da1198
commit 74267d0119
2 changed files with 21 additions and 23 deletions

View File

@@ -29,7 +29,19 @@ import java.util.Iterator;
*/
public class CollectionPostMethodInvocationProcessor extends BasePostMethodInvocationProcessor
{
@SuppressWarnings({ "rawtypes" })
/**
* @see org.alfresco.module.org_alfresco_module_rm.classification.interceptor.processor.BasePostMethodInvocationProcessor#getClassName()
*/
@Override
protected Class<?> getClassName()
{
return Collection.class;
}
/**
* @see org.alfresco.module.org_alfresco_module_rm.classification.interceptor.processor.BasePostMethodInvocationProcessor#process(java.lang.Object)
*/
@SuppressWarnings("rawtypes")
@Override
public <T> T process(T object)
{
@@ -54,10 +66,4 @@ public class CollectionPostMethodInvocationProcessor extends BasePostMethodInvoc
return result;
}
@Override
protected Class<?> getClassName()
{
return Collection.class;
}
}