List<JsonBean> insert = new ArrayList<JsonBean>();
insert.add(reg);
SLACalculationInsertUpdateJPAExecutor slaInsertCmd = new SLACalculationInsertUpdateJPAExecutor(insert, null);
jpaService.execute(slaInsertCmd);
assertNotNull(jpaService);
SLARegistrationGetOnRestartJPAExecutor readCmd = new SLARegistrationGetOnRestartJPAExecutor(jobId);
SLARegistrationBean bean = jpaService.execute(readCmd);
assertEquals("dummyMessage", bean.getNotificationMsg());
assertEquals ("upApps", bean.getUpstreamApps());
assertEquals ("miss", bean.getAlertEvents());
assertEquals ("abc@y.com", bean.getAlertContact());