Coverage Report - pt.digitalis.dif.controller.objects.DispatcherAuthenticationResult
 
Classes in this File Line Coverage Branch Coverage Complexity
DispatcherAuthenticationResult
0%
0/6
N/A
0
 
 1  0
 /**
 2  
  * 2009, Digitalis Informatica. All rights reserved. Distribuicao e Gestao de Informatica, Lda. Estrada de Paco de Arcos
 3  
  * num.9 - Piso -1 2780-666 Paco de Arcos Telefone: (351) 21 4408990 Fax: (351) 21 4408999 http://www.digitalis.pt
 4  
  */
 5  
 
 6  
 package pt.digitalis.dif.controller.objects;
 7  
 
 8  
 /**
 9  
  * Defines the result of the action performed by the authentication step of the DIF dispatcher
 10  
  *
 11  
  * @author Galaio da Silva <a href="mailto:jgalaio@digitalis.pt">jgalaio@digitalis.pt</a><br/>
 12  
  * @created Dec 14, 2010
 13  
  */
 14  0
 public enum DispatcherAuthenticationResult {
 15  
 
 16  
     /**  */
 17  0
     LOGIN,
 18  
 
 19  
     /** the authentication process failed */
 20  0
     FAILED,
 21  
 
 22  
     /**  */
 23  0
     LOGOUT,
 24  
 
 25  
     /** The authentication concluded with no login/logout action performed */
 26  0
     NO_ACTION;
 27  
 }