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 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
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 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
15 |
0
|
public List<Interceptor> getInInterceptors() {... |
16 |
0
|
return inInterceptors; |
17 |
|
} |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
18 |
0
|
public void setInInterceptors(List<Interceptor> inInterceptors) {... |
19 |
0
|
this.inInterceptors = inInterceptors; |
20 |
0
|
this.put("inInterceptor", inInterceptors); |
21 |
|
} |
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
22 |
0
|
public List<Interceptor> getOutInterceptors() {... |
23 |
0
|
return outInterceptors; |
24 |
|
} |
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
25 |
0
|
public void setOutInterceptors(List<Interceptor> outInterceptors) {... |
26 |
0
|
this.outInterceptors = outInterceptors; |
27 |
0
|
this.put("outInterceptor", outInterceptors); |
28 |
|
} |
29 |
|
|
30 |
|
|
31 |
|
} |