Thanks Dave. I started looking into your suggestions and came across GroupAwareJob. From the API doc it looks very much like my requirement - but in my case the 'group' is France rather than financeDepartment.
I'm creating these by
Code:
<bean class="org.springframework.batch.core.configuration.support.JobRegistryBeanPostProcessor">
...
<property name="groupName" value="${batch.groupid}"/>
</bean>
Where batch.groupid=France, Germany etc.
I now see France.myJob and Germany.myJob on the Jobs Tab in SBA.
Are there any gotchas with this approach, is it a misuse of the 'groupName' attribute?