Package org.apache.airavata.client.api

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


    @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

    @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

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.