/*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#listAnchors(java.lang.Long, int, org.nhindirect.config.service.impl.CertificateGetOptions)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public Collection<Anchor> listAnchors(
     Long lastAnchorID, int maxResults, CertificateGetOptions options)
     throws ConfigurationServiceException {
   return anchorSvc.listAnchors(lastAnchorID, maxResults, options);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#getAnchors(java.util.Collection, org.nhindirect.config.service.impl.CertificateGetOptions)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public Collection<Anchor> getAnchors(Collection<Long> anchorIds, CertificateGetOptions options)
     throws ConfigurationServiceException {
   return anchorSvc.getAnchors(anchorIds, options);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#getOutgoingAnchors(java.lang.String, org.nhindirect.config.service.impl.CertificateGetOptions)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public Collection<Anchor> getOutgoingAnchors(String owner, CertificateGetOptions options)
     throws ConfigurationServiceException {
   return anchorSvc.getOutgoingAnchors(owner, options);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#getAnchor(java.lang.String, java.lang.String, org.nhindirect.config.service.impl.CertificateGetOptions)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public Anchor getAnchor(String owner, String thumbprint, CertificateGetOptions options)
     throws ConfigurationServiceException {
   return anchorSvc.getAnchor(owner, thumbprint, options);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#removeAnchorsForOwner(java.lang.String)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public void removeAnchorsForOwner(String owner) throws ConfigurationServiceException {
   anchorSvc.removeAnchorsForOwner(owner);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#removeAnchors(java.util.List)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public void removeAnchors(Collection<Long> anchorIds) throws ConfigurationServiceException {
   anchorSvc.removeAnchors(anchorIds);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#setAnchorStatusForOwner(java.lang.String, org.nhindirect.config.store.EntityStatus)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public void setAnchorStatusForOwner(String owner, EntityStatus status)
     throws ConfigurationServiceException {
   anchorSvc.setAnchorStatusForOwner(owner, status);
 }
 /*
  * (non-Javadoc)
  *
  * @see org.nhindirect.config.service.AnchorService#addAnchors(java.util.List)
  */
 @Override
 @FaultAction(className = ConfigurationFault.class)
 public void addAnchors(Collection<Anchor> anchors) throws ConfigurationServiceException {
   anchorSvc.addAnchors(anchors);
 }