Changes between Version 3 and Version 4 of AnalisisDominio


Ignore:
Timestamp:
May 26, 2015, 10:50:25 AM (9 years ago)
Author:
pbuitrago
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AnalisisDominio

    v3 v4  
    8484@startuml
    8585
    86 (*) --> "Leer identificador del archivo"
    87 --> "Cargar el documento del sistema de archivos del servidor"
    88 if "tipo de firma" then
    89     -->[PDF] if "" then
    90         -->[Tiene firma] "Obtener información de la firma PDF"
    91         -->"Registar información de firma PDF"
    92         -->"Retornar información de firma(s)"
    93     else
    94         -->[no tiene firma PDF] (*) 
     86start
     87
     88  :Leer identificador del archivo;
     89  :Cargar el documento del sistema de archivos del servidor;
     90  if ( Tipo de firma ) then ( PDF )
     91  repeat
     92    if( Tiene firma ) then ( Si )
     93      :Obtener información de la firma PDF;
     94      :Registar información de la firma PDF;
     95    else (No)
    9596    endif
    96 else
    97     [BDOC] if "" then
    98         -->[Tiene firma] "Obtener información de la firma BDOC"
    99         -->"Registar información de firma BDOC"
    100         -->"Retornar información de firma(s)"
    101         -->(*)
    102     else
    103         -->[no tiene firma BDOC] (*)
     97    repeat while (otra firma?)
     98  else ( BDOC )
     99    repeat
     100    if( Tiene firma ) then ( Si )
     101      :Obtener información de la firma BDOC;
     102      :Registar información de la firma BDOC;
     103    else (No)
    104104    endif
    105 endif
    106 @enduml
    107 }}}
     105    repeat while (otra firma?)
     106  endif
     107  :Retornar información de la firma;
     108stop
     109
     110@enduml}}}