private void storeToDB(CoordinatorActionBean actionBean, String actionXml) throws Exception {
LOG.debug("In storeToDB() coord action id = " + actionBean.getId() + ", size of actionXml = "
+ actionXml.length());
actionBean.setActionXml(actionXml);
jpaService.execute(new CoordActionInsertJPAExecutor(actionBean));
writeActionRegistration(actionXml, actionBean);
// TODO: time 100s should be configurable
queue(new CoordActionNotificationXCommand(actionBean), 100);
queue(new CoordActionInputCheckXCommand(actionBean.getId(), actionBean.getJobId()), 100);