Coverage Report - org.openpermis.policy.bean.ActionBeanCollection
 
Classes in this File Line Coverage Branch Coverage Complexity
ActionBeanCollection
N/A
N/A
1
 
 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 java.util.List;
 13  
 
 14  
 import org.openpermis.policy.ActionCollection;
 15  
 
 16  
 
 17  
 /**
 18  
  * A collection of {@link ActionBean}'s.
 19  
  * @since 0.3.0
 20  
  */
 21  
 public interface ActionBeanCollection 
 22  
         extends ActionCollection, 
 23  
                 BeanCollection<ActionBean>
 24  
 {
 25  
 
 26  
         /**
 27  
          * Returns a new action bean collection containing the list.
 28  
          * @param list a {@link List}.
 29  
          * @return a new action bean collection containing the list.
 30  
          */
 31  
         ActionBeanCollection create (List<ActionBean> list);
 32  
 
 33  
 }