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

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


        property = workflowDataNode.getProperty(
            WORKFLOW_INSTANCE_NAME_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


        String nodeName = WORKFLOW_INTERPRETER_INSTANCE_DATA;
    try {
      saveServiceURL(gfacURL, nodeName);
        } catch (Exception e) {
            System.out.println(e);
            throw new RegistryException("Error while saving Interoreter Service URL to the registry!!!", e);
    }
        return true;
    }
View Full Code Here

        String nodeName = WORKFLOW_INTERPRETER_INSTANCE_DATA;
    try {
      deleteServiceURL(gfacURL, nodeName);
        } catch (Exception e) {
            System.out.println(e);
            throw new RegistryException("Error while deleting Workflow Interpreter Service URL from registry!!!",e);
    }
        return true;
    }
View Full Code Here

  public List<URI> getInterpreterServiceURLList() throws RegistryException {
        String nodeName = WORKFLOW_INTERPRETER_INSTANCE_DATA;
        try {
      return getServiceURLList(nodeName);
        } catch (RepositoryException e) {
            throw new RegistryException("Error while retrieving Workflow Interpreter Service url list!!!", e);
    }
    }
View Full Code Here

  public List<URI> getMessageBoxServiceURLList() throws RegistryException {
    String nodeName = MESSAGE_BOX_INSTANCE_DATA;
        try {
      return getServiceURLList(nodeName);
        } catch (RepositoryException e) {
            throw new RegistryException("Error while retrieving Message box Service url list!!!", e);
    }
  }
View Full Code Here

    String nodeName = MESSAGE_BOX_INSTANCE_DATA;
    try {
      saveServiceURL(gfacURL, nodeName);
        } catch (Exception e) {
            System.out.println(e);
            throw new RegistryException("Error while saving Message box Service URL to the registry!!!", e);
    }
        return true;
  }
View Full Code Here

    String nodeName = MESSAGE_BOX_INSTANCE_DATA;
    try {
      deleteServiceURL(gfacURL, nodeName);
        } catch (Exception e) {
            System.out.println(e);
            throw new RegistryException("Error while deleting Message box Service URL from registry!!!",e);
    }
        return true;
  }
View Full Code Here

  public List<URI> getEventingServiceURLList() throws RegistryException {
    String nodeName = EVENTING_INSTANCE_DATA;
        try {
      return getServiceURLList(nodeName);
        } catch (RepositoryException e) {
            throw new RegistryException("Error while retrieving Eventing Service url list!!!", e);
    }
  }
View Full Code Here

    String nodeName = EVENTING_INSTANCE_DATA;
    try {
      saveServiceURL(gfacURL, nodeName);
        } catch (Exception e) {
            System.out.println(e);
            throw new RegistryException("Error while saving Eventing Service URL to the registry!!!", e);
    }
        return true;
  }
View Full Code Here

    public String saveDeploymentDescription(String serviceId, String hostId, String app)throws RegistryException{
        try {
            return registry.saveDeploymentDescription(serviceId, hostId, ApplicationDeploymentDescription.fromXML(app));
        } catch (XmlException e) {
            throw new RegistryException("Error saving ApplicationDescription Creation/Saving" , e)//To change body of catch statement use File | Settings | File Templates.
        }
    }
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.