1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.ksb.messaging.web; |
17 |
|
|
18 |
|
import java.util.List; |
19 |
|
|
20 |
|
import org.apache.struts.action.ActionForm; |
21 |
|
import org.kuali.rice.core.util.KeyValue; |
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
@author |
27 |
|
|
28 |
|
|
|
|
| 0% |
Uncovered Elements: 4 (4) |
Complexity: 2 |
Complexity Density: 1 |
|
29 |
|
public class ConfigViewerForm extends ActionForm{ |
30 |
|
|
31 |
|
List<KeyValue> properties = null; |
32 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
33 |
0
|
public List<KeyValue> getProperties() {... |
34 |
0
|
return this.properties; |
35 |
|
} |
36 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
37 |
0
|
public void setProperties(List<KeyValue> properties) {... |
38 |
0
|
this.properties = properties; |
39 |
|
} |
40 |
|
|
41 |
|
|
42 |
|
} |