Coverage Report - org.openpermis.policy.bean.TargetAccessRuleBeanCollection
 
Classes in this File Line Coverage Branch Coverage Complexity
TargetAccessRuleBeanCollection
N/A
N/A
0
 
 1  
 /*
 2  
  * Copyright (c) 2009, Swiss Federal Department of Defence Civil Protection and Sport
 3  
  *                     (http://www.vbs.admin.ch)
 4  
  * Copyright (c) 2009, Ergon Informatik AG (http://www.ergon.ch)
 5  
  * All rights reserved.
 6  
  *
 7  
  * Licensed under the Open Permis License which accompanies this distribution,
 8  
  * and is available at http://www.openpermis.org/BSDlicenceKent.txt
 9  
  */
 10  
 package org.openpermis.policy.bean;
 11  
 
 12  
 import org.openpermis.policy.TargetAccessRuleCollection;
 13  
 
 14  
 
 15  
 /**
 16  
  * A collection of {@link TargetAccessRuleBean}'s.
 17  
  * @since 0.3.0
 18  
  */
 19  
 public interface TargetAccessRuleBeanCollection 
 20  
         extends TargetAccessRuleCollection, 
 21  
                 BeanCollection<TargetAccessRuleBean>
 22  
 {
 23  
         // Marker interface.
 24  
 }