Clover Coverage Report - KS Security 1.1.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Apr 20 2011 05:09:54 EST
../../../../../../img/srcFileCovDistChart0.png 6% of files have more coverage
6   31   4   1.5
0   23   0.67   4
4     1  
1    
 
  IntercpetorContainer       Line # 9 6 0% 4 10 0% 0.0
 
No Tests
 
1    package org.kuali.student.security.cxf.interceptors;
2   
3    import java.util.ArrayList;
4    import java.util.HashMap;
5    import java.util.List;
6   
7    import org.apache.cxf.interceptor.Interceptor;
8   
 
9    public class IntercpetorContainer extends HashMap<String,List<Interceptor>> {
10   
11    private List<Interceptor> inInterceptors = new ArrayList<Interceptor>();
12    private List<Interceptor> outInterceptors = new ArrayList<Interceptor>();
13   
14   
 
15  0 toggle public List<Interceptor> getInInterceptors() {
16  0 return inInterceptors;
17    }
 
18  0 toggle public void setInInterceptors(List<Interceptor> inInterceptors) {
19  0 this.inInterceptors = inInterceptors;
20  0 this.put("inInterceptor", inInterceptors);
21    }
 
22  0 toggle public List<Interceptor> getOutInterceptors() {
23  0 return outInterceptors;
24    }
 
25  0 toggle public void setOutInterceptors(List<Interceptor> outInterceptors) {
26  0 this.outInterceptors = outInterceptors;
27  0 this.put("outInterceptor", outInterceptors);
28    }
29   
30   
31    }