AEM Listeners & Events | Community
Skip to main content
October 16, 2015
Solved

AEM Listeners & Events

  • October 16, 2015
  • 4 replies
  • 3538 views

How can I capture the asset that triggered a listener in to a variable.

 

In my application:

When a new asset is uploaded to a folder I want to

move it to a different folder.

 

Is there a way to acquire the path or the asset that triggers the event?

I know I can invoke a workflow/use workflow launcher in conjunction with a workflow but I want to do it using the

listener approach.

 

Thanks!

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

" I'm trying to get is the Asset "

Look at using this API:

http://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/dam/commons/handler/AbstractAssetHandler.html

It's the AEM Asset Handler API. We have a community article that shows how to use this API:

https://helpx.adobe.com/experience-manager/using/damhandler.html

This article's use case is to track assets uploaded to the AEM DAM. It will show you how to get up and running with AssetHandler. 

4 replies

Lokesh_Shivalingaiah
New Participant
October 16, 2015

You can.. when you upload an asset, essentially a node will be created. so you can use the node_added listener and do the action. refer [1]

[1] https://helpx.adobe.com/experience-manager/using/events.html

October 16, 2015

I understand that, but what I'm trying to get is the Asset that invoked the listener to begin with. I need to capture that into a variable

Maybe a node variable or maybe an Asset variable.

 

Thanks.

Lokesh_Shivalingaiah
New Participant
October 16, 2015

You can get the path of the event and fro the path you can get asset details

when you write an eventlistner and override onEvent(EventIterator itr)

from the EventIterator, get the event and then the path of the event

Check these APIs for the reference

http://www.day.com/specs/jsr170/javadocs/jcr-1.0/javax/jcr/observation/EventIterator.html

http://www.day.com/specs/jsr170/javadocs/jcr-1.0/javax/jcr/observation/Event.html

smacdonald2008
smacdonald2008Accepted solution
New Participant
October 16, 2015

" I'm trying to get is the Asset "

Look at using this API:

http://docs.adobe.com/docs/en/cq/5-6-1/javadoc/com/day/cq/dam/commons/handler/AbstractAssetHandler.html

It's the AEM Asset Handler API. We have a community article that shows how to use this API:

https://helpx.adobe.com/experience-manager/using/damhandler.html

This article's use case is to track assets uploaded to the AEM DAM. It will show you how to get up and running with AssetHandler.