Which stage do you want to retrieve the contents of the Job? In the Management or Delivery stage?
Hi,
JobItemInfo[] info= ConfigUtil.getCMS().getJobOps().getJobItems(new ObjectId("<>PJOB")); for (int i=0,len=info.length;i<len;i++){ System.out.println(info[i].getItemName() + ": " + info[i].getPrimaryReferrerId() + " : " + info[i].getItemId() ); }
this should help you.
Thanks, Amit