/**
  * public key not found process is being evaluated here
  * @author Mustafa Zeynel Dağlı
  * @since version 0.3
  */
 public function publicKeyNotFoundRedirect()
 {
     if ($this->app->isServicePkRequired && $this->isPublicKeyNotFoundRedirect) {
         $forwarder = new \Utill\Forwarder\PublicNotFoundForwarder();
         $forwarder->setParameters($this->getAppRequestParams());
         $forwarder->redirect();
     } else {
         return true;
     }
 }
 /**
  * public key not found process function, will be overridden by
  * inherit classes
  * @author Mustafa Zeynel Dağlı
  * @since version 0.3
  */
 public function publicKeyNotFoundRedirect()
 {
     if ($this->isServicePkRequired && $this->isPublicKeyNotFoundRedirect) {
         $forwarder = new \Utill\Forwarder\PublicNotFoundForwarder();
         $forwarder->redirect();
     } else {
         return true;
     }
 }