AAF multi import

Le multi import signifie que plusieurs fichiers AAF sont importés sans modifier l’AD

  • on import un AAF complet qui crée un utilisateur
  • on applique les modifications dans l’AD

msc {
   hscale = "1";

   START,COMPLET,AD,FINISH ;

   |||;
   START>>COMPLET [ label = "Unknown user" ] ;
   COMPLET=>AD [ label = "CREATE" ] ;
   AD=>FINISH [ label = "CREATE_DONE" ] ;
}

msc {
   hscale = "1";

   START,COMPLET,DELTA,AD,FINISH ;

   |||;
   START>>COMPLET [ label = "Unknown user" ] ;
   COMPLET=>DELTA [ label = "CREATE" ] ;
   DELTA=>AD [ label = "DELTACREATE" ] ;
   AD=>FINISH [ label = "DELTACREATE_DONE" ] ;
}

msc {
   hscale = "1";

   START,DELTA,AD,FINISH ;

   |||;
   START>>DELTA [ label = "DELTACREATE" ] ;
   DELTA=>AD [ label = "DELTACREATE" ] ;
   AD=>FINISH [ label = "DELTACREATE_DONE" ] ;
}