/**
  * @return bool
  */
 public function process()
 {
     if ($customerId = $this->getUpdateCustomerResult()) {
         $this->_isRequestSuccessful = true;
     }
     return parent::process();
 }
 /**
  * @return bool
  */
 public function process()
 {
     if ($customerId = $this->getCreateCustomerResult()) {
         $this->_isRequestSuccessful = true;
         $this->getTokenHelper()->setCustomerId($customerId);
     }
     return parent::process();
 }
 /**
  * @return bool
  */
 public function process()
 {
     if ($result = $this->getQueryCustomerByReferenceResult()) {
         $customerId = $result->getManagedCustomerId();
         $this->_isRequestSuccessful = true;
         $this->getTokenHelper()->setCustomerId($customerId);
         $this->_data = $result->getData();
     }
     return parent::process();
 }
 /**
  * @return bool
  */
 public function process()
 {
     if ($result = $this->getEwayResponse()) {
         if ($result->getEwayTrxnStatus() === "True") {
             $this->_isRequestSuccessful = true;
         }
         $this->_data = $result->getData();
     }
     return parent::process();
 }