Reputation: 13
I have a requirement where i want to capture an event which occurred in Alfresco in my java application . for e.g i select a particular folder from my Alfresco repository , i need to information of which folder i selected in my java application . Kindly help
Upvotes: 0
Views: 129
Reputation: 1978
You have the possibility to write a Java Behaviour that is triggered for some nodespecific events in the alfresco repository. For example if a node is created, a property is updated, an association is created etc. See http://wiki.alfresco.com/wiki/Services_Framework#Component_Policies
When the event is triggered you could write some code that notifies your application to do what you want.
Upvotes: 1