Package org.apache.airavata.client.api

Examples of org.apache.airavata.client.api.AiravataAPIInvocationException


  @Override
  public URI getRegistryURL() throws AiravataAPIInvocationException {
    try {
      return getClient().getClientConfiguration().getRegistryURL().toURI();
    } catch (URISyntaxException e) {
      throw new AiravataAPIInvocationException(e);
    }
  }
View Full Code Here


    @Override
    public void setConfiguration(String key, String value, Date expire) throws AiravataAPIInvocationException {
       try{
           getClient().getRegistryClient().setConfiguration(key, value, expire);
       }catch (Exception e){
           throw new AiravataAPIInvocationException(e);
       }
    }
View Full Code Here

    @Override
    public void addConfiguration(String key, String value, Date expire) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().addConfiguration(key, value, expire);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void removeAllConfiguration(String key) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().removeAllConfiguration(key);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void removeConfiguration(String key, String value) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().removeConfiguration(key, value);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void addGFacURI(URI uri) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().addGFacURI(uri);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void addWorkflowInterpreterURI(URI uri) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().addWorkflowInterpreterURI(uri);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void setEventingURI(URI uri) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().setEventingURI(uri);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void setMessageBoxURI(URI uri) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().setMessageBoxURI(uri);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

    @Override
    public void addGFacURI(URI uri, Date expire) throws AiravataAPIInvocationException {
        try{
            getClient().getRegistryClient().addGFacURI(uri, expire);
        }catch (Exception e){
            throw new AiravataAPIInvocationException(e);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.client.api.AiravataAPIInvocationException

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.