Package org.apache.airavata.client.api

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


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


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

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

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

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

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

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

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

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

    @Override
    public Gateway getGateway() throws AiravataAPIInvocationException {
        try {
      return getClient().getRegistryClient().getGateway();
    } 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.