Package org.apache.airavata.registry.cpi

Examples of org.apache.airavata.registry.cpi.RegistryException


            }
            statusResource.save();
            return String.valueOf(statusResource.getStatusId());
        } catch (Exception e) {
            logger.error("Unable to read airavata-server properties", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here


            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);
        }
    }
View Full Code Here

            }
            statusResource.save();
            return String.valueOf(statusResource.getStatusId());
        } catch (Exception e) {
            logger.error("Error while adding transfer status...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

            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);
        }
    }
View Full Code Here

                }
            }
            return nodeId;
        } catch (Exception e) {
            logger.error("Error while adding workflow node details...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                    addErrorDetails(error, nodeId);
                }
            }
        } catch (Exception e) {
            logger.error("Error while updating workflow node details...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                resource.setMetadata(input.getMetaData());
                resource.save();
            }
        } catch (Exception e) {
            logger.error("Error while adding workflow inputs...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

                    resource.save();
                }
            }
        } catch (Exception e) {
            logger.error("Error while updating workflow inputs...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

                addTaskStatus(status, ids);
            }
            return taskDetail.getTaskId();
        } catch (Exception e) {
            logger.error("Error while adding task details...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                updateTaskStatus(taskStatus, taskId);
            }
            return taskDetail.getTaskId();
        } catch (Exception e) {
            logger.error("Error while updating task details...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.registry.cpi.RegistryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.