/**
  * Validates the ServiceResponse
  *
  * @param ServiceResponseInterface $response
  * @return bool
  */
 protected function validateResponse(ServiceResponseInterface $response)
 {
     if ($response->getData() == 'wrong') {
         $this->errors[] = 'wrong response';
         return false;
     }
     return true;
 }