Expand my Community achievements bar.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Where can i get the actual class file ?

Avatar

Level 3

I'm need to look code for the below two java files(in cq workflow) can you please helpl me here.From the below i was unable to understand.

com.day.cq.wcm.workflow.process.ActivatePageProces

 

com.day.cq.wcm.workflow.process.DeactivatePageProcess

Note:http://forums.adobe.com/thread/1147754

 

Thanks in advance

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

The complete way:

1) Lookup the bundle name: Feed "com.day.cq.wcm.workflow.process.ActivatePageProces" into http://localhost:4502/system/console/depfinder; this will show you the relevant POM statement for inclusion, but we're only interested in the bundle name. That's "cq-wcm-workflow" in this case.

2) Lookup the Bundle ID for this bundle. Goto http://localhost:4502/system/console/bundles and search for "cq-wcm-workflow" in the list. The number in front of the bundle name is the bundle ID. In my system it's 306, on your system it might differ.

3) Goto the console/ Windows Explorer and then navigate to crx-quickstart/launchpad/felix/; then go to the directory, which contains the bundle ID in it's name (in my case: "bundle306").

4) in a subdirectory (usually "version0.0") you'll find a file named "bundle.jar", which is the JAR file you are interested in. From there you can extract the class files.

Cheers,

Jörg

View solution in original post

1 Reply

Avatar

Correct answer by
Employee Advisor

The complete way:

1) Lookup the bundle name: Feed "com.day.cq.wcm.workflow.process.ActivatePageProces" into http://localhost:4502/system/console/depfinder; this will show you the relevant POM statement for inclusion, but we're only interested in the bundle name. That's "cq-wcm-workflow" in this case.

2) Lookup the Bundle ID for this bundle. Goto http://localhost:4502/system/console/bundles and search for "cq-wcm-workflow" in the list. The number in front of the bundle name is the bundle ID. In my system it's 306, on your system it might differ.

3) Goto the console/ Windows Explorer and then navigate to crx-quickstart/launchpad/felix/; then go to the directory, which contains the bundle ID in it's name (in my case: "bundle306").

4) in a subdirectory (usually "version0.0") you'll find a file named "bundle.jar", which is the JAR file you are interested in. From there you can extract the class files.

Cheers,

Jörg