604605606607608609610611
} statusResource.save(); return String.valueOf(statusResource.getStatusId()); } catch (Exception e) { logger.error("Unable to read airavata-server properties", e); throw new RegistryException(e); } }
624625626627628629630631
statusResource.setStatusUpdateTime(AiravataUtils.getTime(status.getTimeOfStateChange())); statusResource.setState(status.getApplicationState()); statusResource.save(); } catch (Exception e) { logger.error("Error while updating application status...", e); throw new RegistryException(e); } }
656657658659660661662663
} statusResource.save(); return String.valueOf(statusResource.getStatusId()); } catch (Exception e) { logger.error("Error while adding transfer status...", e); throw new RegistryException(e); } }
681682683684685686687688
statusResource.setStatusUpdateTime(AiravataUtils.getTime(status.getTimeOfStateChange())); statusResource.setState(status.getTransferState().toString()); statusResource.save(); } catch (Exception e) { logger.error("Error while updating transfer status...", e); throw new RegistryException(e); } }
739740741742743744745746
} } return nodeId; } catch (Exception e) { logger.error("Error while adding workflow node details...", e); throw new RegistryException(e); } }
790791792793794795796797
addErrorDetails(error, nodeId); } } } catch (Exception e) { logger.error("Error while updating workflow node details...", e); throw new RegistryException(e); } }
810811812813814815816817818
resource.setMetadata(input.getMetaData()); resource.save(); } } catch (Exception e) { logger.error("Error while adding workflow inputs...", e); throw new RegistryException(e); } }
832833834835836837838839840
resource.save(); } } } catch (Exception e) { logger.error("Error while updating workflow inputs...", e); throw new RegistryException(e); } }
908909910911912913914915
addTaskStatus(status, ids); } return taskDetail.getTaskId(); } catch (Exception e) { logger.error("Error while adding task details...", e); throw new RegistryException(e); } }
969970971972973974975976
updateTaskStatus(taskStatus, taskId); } return taskDetail.getTaskId(); } catch (Exception e) { logger.error("Error while updating task details...", e); throw new RegistryException(e); } }