Package org.apache.oodt.cas.catalog.exception

Examples of org.apache.oodt.cas.catalog.exception.CatalogServiceException


      TransactionId<?> catalogTransactionId, String catalogUrn)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getCatalogServiceTransactionId(catalogTransactionId, catalogUrn);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here


  public TransactionId<?> getCatalogServiceTransactionId(
      CatalogReceipt catalogReceipt, boolean generateNew) throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getCatalogServiceTransactionId(catalogReceipt, generateNew);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

      List<TransactionId<?>> catalogTransactionIds, String catalogUrn)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getCatalogServiceTransactionIds(catalogTransactionIds, catalogUrn);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public Set<String> getCurrentCatalogIds() throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getCurrentCatalogIds();
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

      List<String> catalogServiceTransactionIdStrings)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getMetadataFromTransactionIdStrings(catalogServiceTransactionIdStrings);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

      List<TransactionId<?>> catalogServiceTransactionIds)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getMetadataFromTransactionIds(catalogServiceTransactionIds);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public List<TransactionalMetadata> getNextPage(QueryPager queryPager)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getNextPage(queryPager);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public List<String> getProperty(String key) throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getProperty(key);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public List<TransactionId<?>> getTransactionIdsForAllPages(
      QueryPager queryPager) throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getTransactionIdsForAllPages(queryPager);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public TransactionReceipt ingest(Metadata metadata)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.ingest(metadata);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.catalog.exception.CatalogServiceException

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.