Package org.apache.airavata.registry.cpi

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


            dataHandlingResource.setPersistOutputData(dataHandling.isPersistOutputData());
            dataHandlingResource.save();
            return String.valueOf(dataHandlingResource.getOutputDataHandlingId());
        } catch (Exception e) {
            logger.error("Error while adding output data handling...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here


            qosParamResource.setNoOfRetries(qosParams.getNumberofRetries());
            qosParamResource.save();
            return String.valueOf(qosParamResource.getQosId());
        } catch (Exception e) {
            logger.error("Error while adding QOS params...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                errorResource.save();
                return String.valueOf(errorResource.getErrorId());
            }
        } catch (Exception e) {
            logger.error("Unable to add error details...", e);
            throw new RegistryException(e);
        }
        return null;
    }
View Full Code Here

                logger.error("Unsupported field type for Experiment");
            }

        } catch (Exception e) {
            logger.error("Error while updating fields in experiment...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                logger.error("Unsupported field type for Experiment config data");
            }

        } catch (Exception e) {
            logger.error("Error while updating fields in experiment config...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                    addErrorDetails(errror, expId);
                }
            }
        } catch (Exception e) {
            logger.error("Error while updating experiment...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

            if (qosParams != null) {
                updateQosParams(qosParams, experiment);
            }
        } catch (Exception e) {
            logger.error("Error while updating user config data...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

                qosr.setNoOfRetries(qosParams.getNumberofRetries());
                qosr.save();
            }
        } catch (Exception e) {
            logger.error("Error while updating QOS data...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

            adodh.setDataRegUrl(outputDataHandling.getDataRegistryURL());
            adodh.setPersistOutputData(outputDataHandling.isPersistOutputData());
            adodh.save();
        } catch (Exception e) {
            logger.error("Error while updating output data handling...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

            adidh.setStageInputFiles(inputDataHandling.isSetStageInputFilesToWorkingDir());
            adidh.setCleanAfterJob(inputDataHandling.isCleanUpWorkingDirAfterJob());
            adidh.save();
        } catch (Exception e) {
            logger.error("Error while updating input data handling...", 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.