Package org.apache.airavata.registry.cpi

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


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

    }
View Full Code Here


                resource.setMetadata(output.getMetaData());
                resource.save();
            }
        } catch (Exception e) {
            logger.error("Error while adding application outputs...", e);
            throw new RegistryException(e);
        }

    }
View Full Code Here

                    resource.save();
                }
            }
        } catch (Exception e) {
            logger.error("Error while updating application outputs...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

                }

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

    }
View Full Code Here

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

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

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

                }
            }
            return resource.getTransferId();
        } catch (Exception e) {
            logger.error("Error while updating transfer details...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

            schedulingResource.setProjectName(scheduling.getComputationalProjectAccount());
            schedulingResource.save();
            return String.valueOf(schedulingResource.getSchedulingId());
        } catch (Exception e) {
            logger.error("Error while adding scheduling parameters...", e);
            throw new RegistryException(e);
        }
    }
View Full Code Here

            dataHandlingResource.setCleanAfterJob(dataHandling.isCleanUpWorkingDirAfterJob());
            dataHandlingResource.save();
            return String.valueOf(dataHandlingResource.getDataHandlingId());
        } catch (Exception e) {
            logger.error("Error while adding 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.