mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Register all CMIS Action Evaluators as per spec.
- add ParentActionEvaluator - add logging of registration git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13824 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -29,7 +29,7 @@ import org.alfresco.service.ServiceRegistry;
|
||||
import org.alfresco.service.cmr.repository.NodeRef;
|
||||
|
||||
/**
|
||||
* Alfresco Permission based Action Evaluator
|
||||
* Action Evaluator whose evaluation is fixed
|
||||
*
|
||||
* @author davidc
|
||||
*
|
||||
@@ -58,4 +58,13 @@ public class FixedValueActionEvaluator extends AbstractActionEvaluator
|
||||
{
|
||||
return allowed;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
StringBuilder builder = new StringBuilder();
|
||||
builder.append("FixedValueActionEvaluator[action=").append(getAction());
|
||||
builder.append(", allowed=").append(allowed).append("]");
|
||||
return builder.toString();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user