}
private void _testGetJobIdForExternalId(String jobId) throws Exception {
JPAService jpaService = Services.get().get(JPAService.class);
assertNotNull(jpaService);
WorkflowIdGetForExternalIdJPAExecutor wfIdGetCmd = new WorkflowIdGetForExternalIdJPAExecutor("external-id");
String ret = jpaService.execute(wfIdGetCmd);
assertNotNull(ret);
assertEquals(jobId, ret);
}