I have 2 jobs named Job A and Job B,both are chained in quartz scheduler which fires job A first and then Job B.
I'm generating a String value in Job A's step listener which needs to be passed to Job B.If I put the value in Job A's execution context it can not be accessed in Job B.
1) Is there a way I can Inject Quartz jobExecutionContext to job ?
2)Can I create a parent JOB P for A and B ,implement my logic in its step and inject it to both child Job ?
3)Is there any other way around ?
Please guide towards the right approach