cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Action Evaluator

karimbuenaseda
Champ on-the-rise
Champ on-the-rise
Hi Guys,

I'm a newbie in Alfresco development, just want to ask as to where can I find the org.alfresco.web.action.ActionEvaluator to create a custom evaluator class or if there is an existing jar file regarding this?

Thanks
2 REPLIES 2

niketapatel
Star Contributor
Star Contributor
You can find this class in - alfresco-web-client-your.version.jar which is existing jar.

To develop custom evaluator, You can extend this class BaseActionEvaluator which implements ActionEvaluator  but this is for Alfresco explorer NOT for Share actions.

As you have posted in Share development, I am assuming you need to have custom evaluator for Share

To develop custom evalutor for Share action you can check this class -  org.alfresco.web.evaluator.BaseEvaluator[alfresco-share-your.version.jar] and some existing example.

Please check wiki for more development example - http://docs.alfresco.com/4.2/topic/com.alfresco.enterprise.doc/concepts/dev-for-developers.html

http://docs.alfresco.com/4.2/topic/com.alfresco.enterprise.doc/concepts/doclib-override-extension-ex...



Wow,thanks for this, appreciate your help.