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

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


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


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

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

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

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

  public void addPluginUrls(List<PluginURL> urls) throws CatalogServiceException {
    try {
      this.communicationChannelClient.addPluginUrls(this.transferToServerSide(urls));
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

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

        }
        metadata.addAll(this.communicationChannelClient.getNextPage(queryPager));
      }
      return metadata;
    } catch (Exception e) {
      throw new CatalogServiceException(e.getMessage(), e);
    }
  }
View Full Code Here

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

  public Properties getCalalogProperties(String catalogUrn)
      throws CatalogServiceException {
    try {
      return this.communicationChannelClient.getCalalogProperties(catalogUrn);
    } 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.