View Javadoc

1   /**
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  public enum DispatcherAuthenticationResult {
15  
16      /**  */
17      LOGIN,
18  
19      /** the authentication process failed */
20      FAILED,
21  
22      /**  */
23      LOGOUT,
24  
25      /** The authentication concluded with no login/logout action performed */
26      NO_ACTION;
27  }