Package org.apache.airavata.common.registry.api.exception

Examples of org.apache.airavata.common.registry.api.exception.RegistryException


            }
                    }
                }
            }
        } catch (Exception e) {
            throw new RegistryException("Error while retrieving workflow execution service data!!!",e);
        } finally {
            closeSession(session);
        }
        return workflowIODataList;
    }
View Full Code Here


        }
      }
      property=new WorkflowInstanceStatus(new WorkflowInstance(experimentId,experimentId),status, date);
            session.save();
        } catch (Exception e) {
            throw new RegistryException("Error while retrieving workflow execution status!!!", e);
        } finally {
            closeSession(session);
        }
        return property;
    }
View Full Code Here

          session);
      resultNode.setProperty(outputNodeName, output);
      session.save();
    } catch (RepositoryException e) {
      e.printStackTrace();
      throw new RegistryException(e);
    }finally{
      closeSession(session);
    }
      return true;
  }
View Full Code Here

        return null;
      }
      return new WorkflowIOData(outputNodeName,outputProperty.getString());
    } catch (RepositoryException e) {
      e.printStackTrace();
      throw new RegistryException(e);
    }finally{
      closeSession(session);
    }
    }
View Full Code Here

            outputNames.add(nextProperty.getName());
                }
      }
    } catch (RepositoryException e) {
      e.printStackTrace();
      throw new RegistryException(e);
    }finally{
      closeSession(session);
    }
        return outputNames.toArray(new String[]{});
    }
View Full Code Here

                WorkflowInstanceStatus workflowStatus = getWorkflowExecutionStatus(experimentId);
                workflowStatusMap.put(experimentId,workflowStatus);
            }
    } catch (RepositoryException e) {
            e.printStackTrace();
            throw new RegistryException(e);
        }finally{
            closeSession(session);
        }
        return workflowStatusMap;
    }
View Full Code Here

              WorkflowIOData workflowOutputData = getWorkflowExecutionOutput(experimentId, outputName);
                workflowStatusMap.put(experimentId,workflowOutputData);
            }
    } catch (RepositoryException e) {
            e.printStackTrace();
            throw new RegistryException(e);
        }finally{
            closeSession(session);
        }
        return workflowStatusMap;
    }
View Full Code Here

                String[] workflowOutputData = getWorkflowExecutionOutputNames(experimentId);
                workflowStatusMap.put(experimentId,workflowOutputData);
            }
    } catch (RepositoryException e) {
            e.printStackTrace();
            throw new RegistryException(e);
        }finally{
            closeSession(session);
        }
        return workflowStatusMap;
    }
View Full Code Here

        if (user==null || (instanceUser!=null && compile.matcher(instanceUser).find())){
          ids.add(id);
        }
      }
    } catch (RepositoryException e) {
      throw new RegistryException("Error in retrieving Execution Ids for the user '"+user+"'",e);
    }finally{
      closeSession(session);
    }
    return ids;
  }
View Full Code Here

        property = workflowDataNode.getProperty(
            WORKFLOW_METADATA_PROPERTY).getString();
      }
      session.save();
        } catch (Exception e) {
            throw new RegistryException("Error while retrieving workflow metadata!!!", e);
        } finally {
            closeSession(session);
        }
        return property;
  }
View Full Code Here

TOP

Related Classes of org.apache.airavata.common.registry.api.exception.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.