/**
  * De authenticatie klasse verandert naar status afgemeld
  * @return boolean true
  */
 public function afmelden()
 {
     $this->gebruiker = KVDutil_Auth_Gebruiker::newNull();
     $this->authenticatie->setStatus($this->authenticatie->getAfgemeldStatus());
     return true;
 }
 /**
  * Geef het gebruiker object terug
  *
  * @return KVDutil_Auth_NullGebruiker
  */
 public function getGebruiker()
 {
     return KVDutil_Auth_Gebruiker::newNull();
 }