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

Examples of org.apache.airavata.registry.api.exception.UnimplementedRegistryOperationException


    public ResourceMetadata getWorkflowMetadata(String workflowName) throws RegistryException {
        if (userWorkflowRegistry != null){
            return userWorkflowRegistry.getWorkflowMetadata(workflowName);
        }
      //TODO
        throw new UnimplementedRegistryOperationException();
    }
View Full Code Here


    public ResourceMetadata getHostDescriptorMetadata(String hostName) throws RegistryException {
      if (descriptorRegistry != null) {
            return descriptorRegistry.getHostDescriptorMetadata(hostName);
        }
      //TODO
        throw new UnimplementedRegistryOperationException();
    }
View Full Code Here

    public ResourceMetadata getServiceDescriptorMetadata(String serviceName) throws RegistryException {
        if (descriptorRegistry != null) {
            return descriptorRegistry.getServiceDescriptorMetadata(serviceName);
        }else {
            //TODO
            throw new UnimplementedRegistryOperationException();
        }
    }
View Full Code Here

    public ResourceMetadata getApplicationDescriptorMetadata(String serviceName, String hostName, String applicationName) throws RegistryException {
      if (descriptorRegistry != null) {
            return descriptorRegistry.getApplicationDescriptorMetadata(serviceName, hostName, applicationName);
        }
      //TODO
        throw new UnimplementedRegistryOperationException();
    }
View Full Code Here

    public ResourceMetadata getPublishedWorkflowMetadata(String workflowName) throws RegistryException {
        if (publishedWorkflowRegistry != null){
            return publishedWorkflowRegistry.getPublishedWorkflowMetadata(workflowName);
        }
        //TODO
        throw new UnimplementedRegistryOperationException();
    }
View Full Code Here

    public ResourceMetadata getWorkflowMetadata(String workflowName) throws RegistryException {
        if (userWorkflowRegistry != null){
            return userWorkflowRegistry.getWorkflowMetadata(workflowName);
        }
      //TODO
        throw new UnimplementedRegistryOperationException();
    }
View Full Code Here

  }

  @Override
  public List<ServiceDescription> searchServiceDescription(String nameRegEx)
      throws AiravataAPIInvocationException {
    throw new AiravataAPIInvocationException(new UnimplementedRegistryOperationException());
  }
View Full Code Here

    @Override
  public List<ApplicationDescription> searchApplicationDescription(
            String serviceName, String hostName)
      throws AiravataAPIInvocationException {
    throw new AiravataAPIInvocationException(new UnimplementedRegistryOperationException());
  }
View Full Code Here

  @Override
  public List<ApplicationDescription> searchApplicationDescription(
            String serviceName, String hostName, String applicationName)
      throws AiravataAPIInvocationException {
    throw new AiravataAPIInvocationException(new UnimplementedRegistryOperationException());
  }
View Full Code Here


    @Override
  public List<HostDescription> searchHostDescription(String regExName)
      throws AiravataAPIInvocationException {
    throw new AiravataAPIInvocationException(new UnimplementedRegistryOperationException());
  }
View Full Code Here

TOP

Related Classes of org.apache.airavata.registry.api.exception.UnimplementedRegistryOperationException

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.