Coverage Report - pt.digitalis.dif.utils.extensions.cms.ACLUserEntry
 
Classes in this File Line Coverage Branch Coverage Complexity
ACLUserEntry
0%
0/4
N/A
1
 
 1  0
 /**
 2  
  * 2010, 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.utils.extensions.cms;
 7  
 
 8  
 /**
 9  
  * A User ACL entry
 10  
  * 
 11  
  * @author Pedro Viegas <a href="mailto:pviegas@digitalis.pt">pviegas@digitalis.pt</a><br/>
 12  
  * @created 2010/10/06
 13  
  */
 14  
 public class ACLUserEntry extends ACLEntry {
 15  
 
 16  
     /**
 17  
      * Default constructor
 18  
      * 
 19  
      * @param userID
 20  
      *            the user ID
 21  
      */
 22  0
     public ACLUserEntry(String userID)
 23  
     {
 24  0
         this.setUserID(userID);
 25  0
     }
 26  
 
 27  
 }