Coverage Report - org.kuali.student.security.cxf.interceptors.IntercpetorContainer
 
Classes in this File Line Coverage Branch Coverage Complexity
IntercpetorContainer
0%
0/11
N/A
1
 
 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  0
 public class IntercpetorContainer extends HashMap<String,List<Interceptor>> {
 10  
     
 11  0
     private List<Interceptor> inInterceptors = new ArrayList<Interceptor>();
 12  0
     private List<Interceptor> outInterceptors = new ArrayList<Interceptor>();
 13  
     
 14  
     
 15  
     public List<Interceptor> getInInterceptors() {
 16  0
         return inInterceptors;
 17  
     }
 18  
     public void setInInterceptors(List<Interceptor> inInterceptors) {
 19  0
         this.inInterceptors = inInterceptors;
 20  0
         this.put("inInterceptor", inInterceptors);
 21  0
     }
 22  
     public List<Interceptor> getOutInterceptors() {
 23  0
         return outInterceptors;
 24  
     }
 25  
     public void setOutInterceptors(List<Interceptor> outInterceptors) {
 26  0
         this.outInterceptors = outInterceptors;
 27  0
         this.put("outInterceptor", outInterceptors);
 28  0
     }
 29  
     
 30  
     
 31  
 }