public function duplicate()
 {
     $n_categorie = new Categorie();
     $n_categorie->setNom($this->nom)->setCle($this->cle)->setCommentaire($this->commentaire);
     // we skip verrouille parameter
     return $n_categorie;
 }