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

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


 
  public void shutdown() throws CatalogServiceException  {
    try {
      this.communicationChannelClient.shutdown();
    }catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here


        this.communicationChannelClient.transferUrl(pluginURL.getURL(), serverSideURL.getURL());
        serverSideUrls.add(serverSideURL);
      }
      return serverSideUrls;
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

   
  public void addCatalog(Catalog catalog) throws CatalogServiceException {
    try {
      this.communicationChannelClient.addCatalog(catalog);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void replaceCatalog(Catalog catalog)
      throws CatalogServiceException {
    try {
      this.communicationChannelClient.replaceCatalog(catalog);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void addCatalog(String catalogId, Index index)
      throws CatalogServiceException {
    try {
      this.communicationChannelClient.addCatalog(catalogId, index);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void addCatalog(String catalogId, Index index, List<Dictionary> dictionaries) throws CatalogServiceException {
    try {
      this.communicationChannelClient.addCatalog(catalogId, index, dictionaries);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void addCatalog(String catalogId, Index index, List<Dictionary> dictionaries, boolean restrictQueryPermission,
      boolean restrictIngestPermission) throws CatalogServiceException {
    try {
      this.communicationChannelClient.addCatalog(catalogId, index, dictionaries, restrictQueryPermission, restrictIngestPermission);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void addDictionary(String catalogId, Dictionary dictionary)
      throws CatalogServiceException {
    try {
      this.communicationChannelClient.addDictionary(catalogId, dictionary);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void replaceDictionaries(String catalogId, List<Dictionary> dictionaries) throws CatalogServiceException {
    try {
      this.communicationChannelClient.replaceDictionaries(catalogId, dictionaries);
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

  public void modifyIngestPermission(String catalogId,
      boolean restrictIngestPermission) throws CatalogServiceException {
    try {
      this.communicationChannelClient.modifyIngestPermission(catalogId, restrictIngestPermission);
    } 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.