/**
  * Set the HTTP client instance
  *
  * Sets the HTTP client object to use for retrieving the feed.
  *
  * @deprecated Deprecated as of Zend Framework 1.7. Use
  *             setService() instead.
  * @param  \Zend\Http\Client $httpClient
  * @return \Zend\GData\App\FeedSourceParent Provides a fluent interface
  */
 public function setHttpClient(\Zend\Http\Client $httpClient)
 {
     parent::setHttpClient($httpClient);
     foreach ($this->_entry as $entry) {
         $entry->setHttpClient($httpClient);
     }
     return $this;
 }